Tags / List

List tags for the authenticated account.

Endpoint

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

Request

{}

Response

Top level

ok Always true on success.
tags Array of tag summary objects.
capacity Tag quota for the account.
rate_limit Rate limit state for the tier this endpoint consumes. Present on every successful response.

tags[]

guid Tag id.
name Tag name.

capacity

limit Maximum tags allowed on your plan.
used Tags currently in use.
remaining Tags 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, "tags": [ { "guid": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "name": "critical" } ], "capacity": { "limit": 20, "used": 5, "remaining": 15 }, "rate_limit": { "tier": 2, "cost": 1, "timeframe": "minute", "limit": 120, "used": 73, "remaining": 47 } }