Reports liveness of the API server process and the upstream Datahub endpoints it depends on. Suitable as a Kubernetes liveness probe. blockHeight is this instance's processed chain-tip height — a freshness signal (datahub_urls[].healthy is reachability-only), letting clients detect a stale chain view and route around it. Each datahub_urls entry also carries the transaction policy that node advertised, so a policy rejection can be traced to the endpoint that enforced it; policy is absent for endpoints no node_status has announced.
Response
{
"healthy": true,
"version": "v0.8.0",
"status": "ok",
"blockHeight": 958779,
"datahub_urls": [
{
"url": "https://...",
"source": "discovered",
"healthy": true,
"policy": {
"miningFee": { "satoshis": 100, "bytes": 1000 },
"maxtxsizepolicy": 100000000,
"maxscriptsizepolicy": 500000,
"maxtxsigopscountspolicy": 4294967295
}
}
]
}