Skip to main content

lidarr-api

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

Zur Installation springen

Quellinformationen

Repository
ahembree/librariarr
Letzte Quellaktivität
20. Mai 2026 um 21:23
Erkannte Sprache von SKILL.md
Englisch
Sterne
7
Forks
1

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
lidarr-api
description
Reference for the Lidarr v1 REST API. Use when adding, debugging, or extending Lidarr API calls (new endpoints on LidarrClient, query/command payloads, response schemas).
# Lidarr API Fetch the Lidarr v1 OpenAPI spec from: https://raw.githubusercontent.com/lidarr/Lidarr/master/src/Lidarr.Api.V1/openapi.json All endpoints are under `/api/v1/*` (note: v1, not v3 like Radarr/Sonarr). Auth is the `X-Api-Key: <apiKey>` header. The spec is large — 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/v1/artist"'` - Look up a schema: `curl -s <url> | jq '.components.schemas.ArtistResource'` - Find endpoints by tag: `curl -s <url> | jq '[.paths | to_entries[] | select(.value | .. | .tags? // [] | index("Artist")) | .key]'`
Auf GitHub ansehen