TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/iFamishedX/HungerBridge/llms.txt
Use this file to discover all available pages before exploring further.
/v2/status endpoint is a minimal liveness probe. It returns {"ok": true} as long as the HungerBridge HTTP server is up and the request passes authentication. Use it in monitoring pipelines, uptime checkers, or load balancers that need a lightweight signal that the server is alive — without carrying extra payload.
Request
Method:GETPath:
/v2/status
Headers
| Header | Required | Description |
|---|---|---|
X-Auth-Key | Yes | Authentication key from config.yaml → auth.key |
Configuration
This endpoint can be disabled inconfig.yaml under v2-endpoints.status. It is enabled by default.
Response
Always
true on a successful 200 response. This is the sole meaningful signal — if the server is not running, no response is returned at all; if the endpoint is disabled or auth fails, a non-200 status is returned.Example Response
Error Responses
| Status | error field | Cause |
|---|---|---|
401 | unauthorized | Missing or incorrect X-Auth-Key header |
403 | forbidden | Endpoint disabled via v2-endpoints.status: false |
405 | method_not_allowed | Request method was not GET |
curl Example
/v2/status intentionally carries no server metrics. If you need version information alongside your liveness check, see GET /v2/info. If you need TPS data, see GET /v2/tps.