Health reports which signer this deployment mints with, and in which env.
Health reports which signer this deployment mints with, and in which env.
GET /v1/licensing/healthz
| Address | https://api.hanzo.ai/v1/licensing/healthz |
| Method | GET |
| Operation | get_licensing_healthz |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Health reports which signer this deployment mints with, and in which env.
It answers 200 whenever the process is up: there is nothing downstream to
probe, since the KMS is reached only when a token is actually minted. Its
value is the signer field — "signer":"local" on a production host says
that deployment is signing licenses with a development key, which is a
misconfiguration worth paging on rather than a healthy 200.
Request
GET /v1/licensing/healthz takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | licensing.HealthView | ok |
200 body — 4 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
env | body | string | — | Env is the deployment environment ("dev" | "staging" | "prod"). |
service | body | string | — | Service is always "licensing". |
signer | body | string | — | Signer names the KMS provider signing licenses here. |
status | body | string | — | Status is "ok" whenever the process is up — this is not a dependency probe. |
Failure carries the platform error shape — see Errors.
Examples
hanzo licensing healthzimport { Configuration, LicensingApi } from 'hanzoai';
const api = new LicensingApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getLicensingHealthz();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import LicensingApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = LicensingApi(client).get_licensing_healthz()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.LicensingAPI.GetLicensingHealthz(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, licensing_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = licensing_api::get_licensing_healthz(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.LicensingApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new LicensingApi(client).getLicensingHealthz();curl https://api.hanzo.ai/v1/licensing/healthz \
-H "Authorization: Bearer $HANZO_API_KEY"Tool licensing, op get_licensing_healthz — 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": "licensing",
"arguments": {
"op": "get_licensing_healthz",
"input": {}
}
}
}'How is this guide?