Assess API · v1
Rate Limits
Public API endpoints are rate-limited per organization to protect reliability. Exceeding the limit returns HTTP 429.
GET
https://praxicraft.com/api/v1/public/...Auth: Bearer ct_live_…
Rate Limit Rules
Read endpoints allow up to 500 requests per hour. Write endpoints (invite creation, reminders) allow 100 requests per hour. Limits reset on a rolling 1-hour window.
Response Fields
| Field | Type | Description |
|---|---|---|
| X-RateLimit-Limit | integer | Max requests allowed in the window |
| X-RateLimit-Remaining | integer | Requests remaining in current window |
| Retry-After | integer | Seconds to wait before retrying (429 responses only) |
Example Response
JSON
HTTP/1.1 429 Too Many Requests
Retry-After: 14
{
"error": {
"message": "Request was throttled. Expected available in 14 seconds.",
"code": "RATE_LIMITED"
}
}