API Reference
Rate Limit Status
Check the current rate limit status for your API key
Rate Limit Status
Check how many requests you have remaining in the current window for the authenticated API key. Every API response also includes rate limit headers (see the Overview) — this endpoint lets you query the status directly without making a billable request.
Endpoint
GET https://api.assisters.dev/v1/rate-limitRequest
No body or query parameters. Authenticate with your API key.
Example
import httpx
response = httpx.get(
"https://api.assisters.dev/v1/rate-limit",
headers={"Authorization": "Bearer ask_your_api_key"},
)
print(response.json())const response = await fetch("https://api.assisters.dev/v1/rate-limit", {
headers: { Authorization: "Bearer ask_your_api_key" },
});
console.log(await response.json());curl https://api.assisters.dev/v1/rate-limit \
-H "Authorization: Bearer ask_your_api_key"Response
{
"limit": 60,
"remaining": 58,
"reset": "2026-06-11T12:34:00.000Z"
}Response Fields
limitintegerYour requests-per-minute limit.
remainingintegerRequests remaining in the current minute window.
resetstringISO 8601 timestamp when the current window resets.
Error Responses
Service Status
Check live API uptime and incidents