Skip to main content

radarr-api

Reference for the Radarr v3 REST API. Use when adding, debugging, or extending Radarr API calls (new endpoints on RadarrClient, query/command payloads, response schemas).

インストールへ移動

ソース情報

リポジトリ
ahembree/librariarr
ソースの最終更新活動
2026年5月20日 21:23
検出された SKILL.md の言語
英語
スター
5
フォーク
1

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
radarr-api
description
Reference for the Radarr v3 REST API. Use when adding, debugging, or extending Radarr API calls (new endpoints on RadarrClient, query/command payloads, response schemas).
# Radarr API Fetch the Radarr v3 OpenAPI spec from: https://raw.githubusercontent.com/Radarr/Radarr/master/src/Radarr.Api.V3/openapi.json All endpoints are under `/api/v3/*`. Auth is the `X-Api-Key: <apiKey>` header. The spec is ~300 KB — do not 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."/api/v3/movie"'` - Look up a schema: `curl -s <url> | jq '.components.schemas.MovieResource'` - Find endpoints by tag: `curl -s <url> | jq '[.paths | to_entries[] | select(.value | .. | .tags? // [] | index("Movie")) | .key]'`
GitHubで見る