Status / List

List status pages for the authenticated account.

Endpoint

Method POST
Url https://downdar.com/api/v1/status/list

Request

{}

Response

Top level

ok Always true on success.
status_pages Array of status page summary objects.
capacity Status page quota for the account.
rate_limit Rate limit state for the tier this endpoint consumes. Present on every successful response.

status_pages[]

guid Status page id.
name Page name.
published draft or published.
monitor_count Monitors on this page.
public_url Public URL when published; empty while draft.

capacity

limit Maximum status pages allowed on your plan.
used Status pages currently in use.
remaining Status pages you can still create.

rate_limit

tier Rate tier this endpoint counts against (1-5).
cost Units consumed by this request against the tier window.
timeframe Rolling limit window: second, minute, hour, or day.
limit Maximum units allowed in the timeframe for this tier on your plan.
used Units already used in the current window.
remaining Units left before this tier returns HTTP 429.
{ "ok": true, "status_pages": [ { "guid": "550e8400-e29b-41d4-a716-446655440000", "name": "Production status", "published": "published", "monitor_count": 4, "public_url": "https://example.com/status/550e8400-e29b-41d4-a716-446655440000" } ], "capacity": { "limit": 5, "used": 1, "remaining": 4 }, "rate_limit": { "tier": 2, "cost": 1, "timeframe": "minute", "limit": 120, "used": 73, "remaining": 47 } }