curl --request GET \
--url 'http://localhost:8000/ready' \
--header "Authorization: Bearer $STATESET_AGENTS_API_KEY"
{
"status": "ready"
}
Readiness Check
Check if the API is ready to receive traffic.
GET
/
ready
curl --request GET \
--url 'http://localhost:8000/ready' \
--header "Authorization: Bearer $STATESET_AGENTS_API_KEY"
{
"status": "ready"
}
Check if the API is ready to receive traffic.
Response
object
string
required
Status codes
| Code | Meaning |
|---|---|
200 | Successful response |
401 | Authentication required |
422 | Validation error |
429 | Rate limit exceeded |
503 | Not ready |
curl --request GET \
--url 'http://localhost:8000/ready' \
--header "Authorization: Bearer $STATESET_AGENTS_API_KEY"
{
"status": "ready"
}
Last modified on August 31, 2026