Skip to main content

Widget API

GET /api/v1/widget returns a read-only summary for external dashboards. It is the only endpoint authorized by the Houndarr API key.

Request

FieldValue
MethodGET
Path/api/v1/widget
Auth headerX-Api-Key: hndarr_...
BodyNone
Auth modeWorks the same in built-in auth and proxy auth modes.

Session cookies and proxy-auth headers do not authorize this endpoint. The X-Api-Key header is required.

Success response

{
"schema": 1,
"generated_at": "2026-05-22T18:00:00Z",
"totals": {
"tracked": 11,
"eligible": 7,
"gated": 2,
"unreleased": 1,
"searches_7d": 1
}
}
FieldTypeMeaning
schemaintegerContract version for the widget payload. Current value is 1.
generated_atstringUTC response generation time, formatted as an ISO timestamp ending in Z.
totalsobjectLibrary-health summary across enabled, healthy instances.
totals.trackedintegerItems Houndarr is responsible for: eligible, gated, unreleased, and upgrade-cooldown items.
totals.eligibleintegerMonitored items Houndarr can search now. Disabled instances and instances with active errors do not contribute.
totals.gatedintegerMissing plus cutoff-unmet items waiting on a per-item cooldown.
totals.unreleasedintegerMonitored items whose release date has not arrived yet.
totals.searches_7dintegerRolling count of successful search attempts recorded during the last seven days.

totals.eligible is clamped per instance before summing so one instance with inconsistent source counts cannot make the global value negative.

Error responses

StatusHeadersWhen
401 UnauthorizedWWW-Authenticate: ApiKeyThe key is missing, invalid, regenerated, revoked, or not configured.
429 Too Many RequestsRetry-After: 60Too many failed key attempts came from the same client IP inside the rate-limit window.

Houndarr does not return per-instance secrets, settings, search logs, or write-action links from this endpoint.

Curl examples

Successful request:

curl -sS \
-H 'X-Api-Key: hndarr_xxxxxxxxxxxxxxxxxxxxxxxxxx' \
http://houndarr:8877/api/v1/widget

Check headers while debugging authentication:

curl -i \
-H 'X-Api-Key: hndarr_xxxxxxxxxxxxxxxxxxxxxxxxxx' \
http://houndarr:8877/api/v1/widget

Missing key:

curl -i http://houndarr:8877/api/v1/widget

Expected header on the 401 response:

WWW-Authenticate: ApiKey

After repeated failed key attempts, wait for the lockout window named by the response header before retrying:

Retry-After: 60

Homepage field mapping

Homepage's customapi widget can display four compact fields. The recommended Houndarr block uses these paths:

FieldLabel
totals.eligibleEligible
totals.gatedGated
totals.unreleasedUnreleased
totals.searches_7dSearches

For the full setup, see Homepage Integration.