Health reports whether the office can mint join tokens.
Health reports whether the office can mint join tokens.
GET /v1/meet/health
| Address | https://api.hanzo.ai/v1/meet/health |
| Method | GET |
| Operation | get_meet_health |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Health reports whether the office can mint join tokens.
It reports whether this deployment holds the LiveKit key pair it needs: ready:true with 200 when tokens can be minted, the SAME body with ready:false, status "degraded" and 503 when they cannot — so a probe and a dashboard both read the degraded state instead of someone grepping a boot log.
It takes no credential and is reachable on every public host, so it withholds both the reason and the signing key's name on purpose: ready is the whole dashboard fact, and the reason — which names the key file and the Secret — is written to the boot log where an operator already is.
Request
GET /v1/meet/health takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | meetHealth | ok |
503 | meetHealth | service unavailable |
200 body — 3 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
ready | body | boolean | — | Ready reports whether this deployment can mint join tokens. |
service | body | string | — | Service names the subsystem answering — always "meet". |
status | body | string | — | Status is "ok" when tokens can be minted and "degraded" when they cannot. |
Failure carries the platform error shape — see Errors.
Examples
hanzo meet healthimport { Configuration, MeetApi } from 'hanzoai';
const api = new MeetApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getMeetHealth();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import MeetApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = MeetApi(client).get_meet_health()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.MeetAPI.GetMeetHealth(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, meet_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = meet_api::get_meet_health(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.MeetApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new MeetApi(client).getMeetHealth();curl https://api.hanzo.ai/v1/meet/health \
-H "Authorization: Bearer $HANZO_API_KEY"Tool meet, op get_meet_health — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "meet",
"arguments": {
"op": "get_meet_health",
"input": {}
}
}
}'How is this guide?