Skip to content

Core health

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

Core-owned health. Reports the composed provider ids and the running @notewright/core version (used by the CLI to detect version skew).

Health payload.

Media type application/json
object
ok
boolean
version
string
notes
string
followUp
string
Example
{
"ok": true,
"version": "1.2.3",
"notes": "granola",
"followUp": "linear"
}

The bearer token is missing or wrong.

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