Using jellyfin-sdk-typescript with jellyfin.local

TypeScript integration

✓ Official SDK
Install
npm install jellyfin-sdk-typescript
Quick start
import Jellyfin_sdk_typescript from 'jellyfin-sdk-typescript';

const client = new Jellyfin_sdk_typescript({ apiKey: "YOUR_API_KEY" });
Gets items based on a query.
curl \
  -H "X-Emby-Authorization: $API_KEY" \
  http://jellyfin.local/Items
Gets a list of users.
curl \
  -H "X-Emby-Authorization: $API_KEY" \
  http://jellyfin.local/Users
Get years.
curl \
  -H "X-Emby-Authorization: $API_KEY" \
  http://jellyfin.local/Years
SDK on GitHub 📄 API Docs
SDK
jellyfin-sdk-typescript
TypeScript
API
jellyfin.local
jellyfin.local
At a glance
Language TypeScript
Endpoints387
Base URLhttp://jellyfin.local
✓ Official