Files
immich/open-api/typescript-sdk
CJPeckover cb91a5a558 - make open-api-typescript
- Allow combobox to have thumbnails
- Add the search-albums-section
- Update search-display-section to disable isNotInAlbum checkbox when albums are selected
- In search filter modal, put albums and tags side by side. Saves space and neither need to be full width
- Add album names filter chips to search page
2025-06-06 22:19:09 -04:00
..
2025-06-06 22:19:09 -04:00
2025-05-27 16:47:49 +00:00
2025-05-27 16:47:49 +00:00

@immich/sdk

A TypeScript SDK for interfacing with the Immich API.

Install

npm i --save @immich/sdk

Usage

For a more detailed example, check out the @immich/cli.

import { getAllAlbums, getMyUser, init } from "@immich/sdk";

const API_KEY = "<API_KEY>"; // process.env.IMMICH_API_KEY

init({ baseUrl: "https://demo.immich.app/api", apiKey: API_KEY });

const user = await getMyUser();
const albums = await getAllAlbums({});

console.log({ user, albums });