Skip to main content

jellyfin-api

Reference for the Jellyfin REST API. Use when adding, debugging, or extending Jellyfin API calls (server queries, library/item lookups, playback control, response schemas).

الانتقال إلى التثبيت

معلومات المصدر

المستودع
ahembree/librariarr
آخر نشاط في المصدر
٢٠ مايو ٢٠٢٦ في ٢١:٢٣
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٧
التفرعات
١

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
name
jellyfin-api
description
Reference for the Jellyfin REST API. Use when adding, debugging, or extending Jellyfin API calls (server queries, library/item lookups, playback control, response schemas).
# Jellyfin API Fetch the Jellyfin OpenAPI spec from: https://api.jellyfin.org/openapi/jellyfin-openapi-stable.json Jellyfin paths are not version-prefixed (e.g. `/Items`, `/Users/{userId}/Items`, `/System/Info`). Multiple auth schemes are supported — consult `components.securitySchemes` in the spec before assuming a header format. The spec is large (~2 MB) — never load it whole into context. Use `curl` + `jq` to extract only what you need: - List all paths: `curl -s <url> | jq '.paths | keys'` - Inspect one endpoint: `curl -s <url> | jq '.paths."/Items"'` - Look up a schema: `curl -s <url> | jq '.components.schemas.BaseItemDto'` - Find endpoints by tag: `curl -s <url> | jq '[.paths | to_entries[] | select(.value | .. | .tags? // [] | index("Items")) | .key]'` - Check auth schemes: `curl -s <url> | jq '.components.securitySchemes'`
عرض على GitHub