OpenapiO11y
Returns a page of the caller org's human-review queues, newest first, narrowed…
Returns a page of the caller org's human-review queues, newest first, narrowed to the caller's project.
GET /v1/o11y/reviews
| Address | https://api.hanzo.ai/v1/o11y/reviews |
| Method | GET |
| Operation | get_o11y_reviews |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns a page of the caller org's human-review queues, newest first, narrowed to the caller's project. Another org's queues are never visible.
Request
2 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
page | query | integer | — | Page is the 1-based page to read. |
limit | query | integer | — | Limit is how many rows to return. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | o11y.annQueueList | ok |
200 body — 12 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | o11y.annQueueView[] | — | Data is the page of queues. |
data[].createdAt | body | string | — | CreatedAt is when it was created, RFC3339 in UTC. |
data[].description | body | string | — | Description is its free text, omitted when empty. |
data[].id | body | string | — | ID is the queue's id. |
data[].name | body | string | — | Name is its display handle. |
data[].scoreConfigIds | body | string[] | — | ScoreConfigIDs are the eval score-configs reviewers grade against. |
data[].updatedAt | body | string | — | UpdatedAt is when it last changed, RFC3339 in UTC. |
meta | body | o11y.listMeta | — | |
meta.limit | body | integer | — | Limit is how many rows one page holds. |
meta.page | body | integer | — | Page is the 1-based page this response is. |
meta.totalItems | body | integer | — | TotalItems is how many rows match in total. |
meta.totalPages | body | integer | — | TotalPages is ceil(totalItems/limit), at least 1. |
Failure carries the platform error shape — see Errors.
Examples
hanzo o11y reviews listimport { Configuration, O11yApi } from 'hanzoai';
const api = new O11yApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getO11yReviews();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_reviews()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.O11yAPI.GetO11yReviews(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_reviews(&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).getO11yReviews();curl https://api.hanzo.ai/v1/o11y/reviews \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches o11y through the o11y tool, which names its 340 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "get_o11y_alert_last"
}
}
}'How is this guide?