OpenapiO11y
Returns the deployment's global configuration: its public endpoints and which…
Returns the deployment's global configuration: its public endpoints and which identity providers are enabled.
GET /v1/o11y/global/config
| Address | https://api.hanzo.ai/v1/o11y/global/config |
| Method | GET |
| Operation | get_o11y_global_config |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns the deployment's global configuration: its public endpoints and which identity providers are enabled. Open by design — the sign-in page reads it before anyone is signed in.
Open by design; the runtime's own gate is OpenAccess.
Request
GET /v1/o11y/global/config takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | o11y.O11yGlobalConfigOut | ok |
200 body — 13 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | o11y.O11yGlobalConfig | — | |
data.ai_assistant_url | body | string | — | AIAssistantURL is the AI assistant endpoint, when one is exposed. |
data.external_url | body | string | — | ExternalURL is the deployment's public URL. |
data.identN | body | o11y.O11yIdentN | — | |
data.identN.apikey | body | o11y.O11yToggle | — | |
data.identN.apikey.enabled | body | boolean | — | Enabled says whether the feature is on. |
data.identN.impersonation | body | o11y.O11yToggle | — | |
data.identN.impersonation.enabled | body | boolean | — | Enabled says whether the feature is on. |
data.identN.tokenizer | body | o11y.O11yToggle | — | |
data.identN.tokenizer.enabled | body | boolean | — | Enabled says whether the feature is on. |
data.ingestion_url | body | string | — | IngestionURL is where telemetry is sent. |
data.mcp_url | body | string | — | MCPURL is the MCP endpoint, when one is exposed. |
status | body | string | — | Status is "success". |
Failure carries the platform error shape — see Errors.
Examples
hanzo o11y global configimport { Configuration, O11yApi } from 'hanzoai';
const api = new O11yApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getO11yGlobalConfig();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import O11yApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = O11yApi(client).get_o11y_global_config()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.O11yAPI.GetO11yGlobalConfig(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, o11y_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = o11y_api::get_o11y_global_config(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.O11yApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new O11yApi(client).getO11yGlobalConfig();curl https://api.hanzo.ai/v1/o11y/global/config \
-H "Authorization: Bearer $HANZO_API_KEY"Tool o11y, op get_o11y_global_config — 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": "o11y",
"arguments": {
"op": "get_o11y_global_config",
"input": {}
}
}
}'How is this guide?