Skip to main content

seerr-api

Reference for the Seerr REST API (the project that merges Overseerr and Jellyseerr). Use when adding, debugging, or extending Seerr API calls (requests, search, settings, user/session control, response schemas).

跳到安装

来源信息

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

安装方式

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

检查来源文件

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

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
seerr-api
description
Reference for the Seerr REST API (the project that merges Overseerr and Jellyseerr). Use when adding, debugging, or extending Seerr API calls (requests, search, settings, user/session control, response schemas).
# Seerr API Fetch the Seerr OpenAPI spec from: https://raw.githubusercontent.com/seerr-team/seerr/refs/heads/main/seerr-api.yml Seerr is the merger of Overseerr and Jellyseerr; the API surface is the same shape as Overseerr's. Two auth schemes are supported (see `components.securitySchemes`): - `apiKey` — `X-Api-Key: <apiKey>` header - `cookieAuth` — sign in via `/auth/plex` or `/auth/local` **The spec is YAML, not JSON** — use `yq` (mikefarah, v4) to query it directly, or pipe through `yq -o json` into `jq` for jq-style filters: - List all paths: `curl -sL <url> | yq '.paths | keys'` - Inspect one endpoint: `curl -sL <url> | yq '.paths."/request"'` - Look up a schema: `curl -sL <url> | yq '.components.schemas.MediaRequest'` - Find endpoints by tag: `curl -sL <url> | yq -o json | jq '[.paths | to_entries[] | select(.value | .. | .tags? // [] | index("request")) | .key]'` - Check auth schemes: `curl -sL <url> | yq '.components.securitySchemes'`
在 GitHub 查看