Skip to main content

emby-api

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

跳到安装

来源信息

仓库
ahembree/librariarr
最近来源活动
2026年5月20日 21:23
检测到的 SKILL.md 语言
英语
星标
7
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
emby-api
description
Reference for the Emby REST API. Use when adding, debugging, or extending Emby API calls (server queries, library/item lookups, playback control, response schemas).
# Emby API Fetch the Emby OpenAPI spec from: https://swagger.emby.media/openapi.json Emby paths are not version-prefixed (e.g. `/Items`, `/Users/{Id}/Items`, `/System/Info`). Multiple auth schemes are supported — consult `components.securitySchemes` (and per-operation `security`) 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 查看