Config-health detail for one instance
const url = 'https://example.com/api/v1/config-health/1';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/config-health/1Live overall health plus a per-quality-profile breakdown with per-criterion contributions and non-judgmental suggestions for a single instance.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Arr instance id
Responses
Section titled “Responses”Instance health detail
object
A scored unit (whole instance or one profile) — the rollup number, its band, and the breakdown.
object
Health band derived from the 0–100 rollup. unknown means every enabled criterion was skipped.
One criterion’s contribution to a scored unit.
object
Criterion id — one of completeness, drift, coherence, compatibility, trash_alignment.
A non-judgmental remediation line rendered through the shared narration surface.
object
Presentation hint for a suggestion; health tone never exceeds warning.
A non-judgmental remediation line rendered through the shared narration surface.
object
Presentation hint for a suggestion; health tone never exceeds warning.
object
Health band derived from the 0–100 rollup. unknown means every enabled criterion was skipped.
One criterion’s contribution to a scored unit.
object
Criterion id — one of completeness, drift, coherence, compatibility, trash_alignment.
A non-judgmental remediation line rendered through the shared narration surface.
object
Presentation hint for a suggestion; health tone never exceeds warning.
A non-judgmental remediation line rendered through the shared narration surface.
object
Presentation hint for a suggestion; health tone never exceeds warning.
Example
{ "arrType": "radarr", "overall": { "band": "healthy", "criteria": [ { "suggestions": [ { "tone": "neutral" } ] } ], "suggestions": [ { "tone": "neutral" } ] }, "profiles": [ { "band": "healthy", "criteria": [ { "suggestions": [ { "tone": "neutral" } ] } ], "suggestions": [ { "tone": "neutral" } ] } ]}Invalid instance id
object
Error message
Examplegenerated
{ "error": "example"}Instance not found or not sync-capable
object
Error message
Examplegenerated
{ "error": "example"}