curl --request GET \
--url 'http://localhost:8000/api/v1/health' \
--header "Authorization: Bearer $STATESET_AGENTS_API_KEY"
{
"status": "pending",
"version": "2026-08-01",
"uptime_seconds": 250,
"components": [
{
"name": "Two-Person Tent",
"status": "pending"
}
],
"timestamp": "2026-08-31T14:22:05Z"
}
Health Check (v1)
Health check endpoint for API v1.
GET
/
api
/
v1
/
health
curl --request GET \
--url 'http://localhost:8000/api/v1/health' \
--header "Authorization: Bearer $STATESET_AGENTS_API_KEY"
{
"status": "pending",
"version": "2026-08-01",
"uptime_seconds": 250,
"components": [
{
"name": "Two-Person Tent",
"status": "pending"
}
],
"timestamp": "2026-08-31T14:22:05Z"
}
Health check endpoint for API v1.
Response
object
string
required
string
required
number
required
string (date-time)
required
Status codes
| Code | Meaning |
|---|---|
200 | Successful response |
401 | Authentication required |
422 | Validation error |
429 | Rate limit exceeded |
curl --request GET \
--url 'http://localhost:8000/api/v1/health' \
--header "Authorization: Bearer $STATESET_AGENTS_API_KEY"
{
"status": "pending",
"version": "2026-08-01",
"uptime_seconds": 250,
"components": [
{
"name": "Two-Person Tent",
"status": "pending"
}
],
"timestamp": "2026-08-31T14:22:05Z"
}
Last modified on August 31, 2026