Aggregate status
GET
/status
const url = 'https://my-instance.example.com/status';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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).
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”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"}