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).

Ir a la instalación

Datos de origen

Repositorio
ahembree/librariarr
Última actividad en el origen
20 de mayo de 2026 a las 21:23
Idioma detectado de SKILL.md
inglés
Estrellas
5
Forks
1

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
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]'`
Ver en GitHub