immich/open-api/typescript-sdk
Alex The Bot 04340b3a62
Some checks failed
CLI Build / Publish (push) Waiting to run
CLI Build / Docker (push) Blocked by required conditions
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Docs build / build (push) Has been cancelled
Version v1.110.0
2024-07-26 15:38:20 +00:00
..
src Version v1.110.0 2024-07-26 15:38:20 +00:00
.npmignore chore: publish sdk on release (#7895) 2024-03-12 12:01:12 -04:00
.nvmrc chore(deps): update dependency node to v20.15.1 (#10969) 2024-07-09 06:56:25 -04:00
package-lock.json Version v1.110.0 2024-07-26 15:38:20 +00:00
package.json Version v1.110.0 2024-07-26 15:38:20 +00:00
README.md feat(server): user preferences (#9736) 2024-05-28 09:16:53 +07:00
tsconfig.json chore: publish sdk on release (#7895) 2024-03-12 12:01:12 -04: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 });