Test

Use this endpoint to verify your bearer token and integration setup. Authenticate with Authorization: Bearer YOUR_API_KEY and keep the key server-side.

Endpoint

Method POST
Url https://downdar.com/api/v1/test

Request

Body fields

(none) Send an empty JSON object {}.
{}

Response

Fields

ok Always true on success.
email Email address of the authenticated account.
rate_limit Rate limit state for the tier this endpoint consumes. Present on every successful response.

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, "email": "you@example.com", "rate_limit": { "tier": 3, "cost": 1, "timeframe": "minute", "limit": 300, "used": 45, "remaining": 255 } }