Skip to content

Aggregate status

GET
/status
curl --request GET \
--url https://my-instance.example.com/status \
--header 'Authorization: Bearer <token>'

Aggregate health: the core version, composed provider ids, and a dos array with one entry per Durable Object (binding, ok, optional error, and a status holding registered schedules).

Aggregate status payload.

Media type application/json
object
ok
boolean
version
string
notes
string
followUp
string
dos
Array<object>
object
binding
string
ok
boolean
error
string
status
object
schedules
Array<string>
Example generated
{
"ok": true,
"version": "example",
"notes": "example",
"followUp": "example",
"dos": [
{
"binding": "example",
"ok": true,
"error": "example",
"status": {
"schedules": [
"example"
]
}
}
]
}

The bearer token is missing or wrong.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "Unauthorized"
}