OpenapiO11y
Lists human annotations on traces and observations, optionally scoped to one…
Lists human annotations on traces and observations, optionally scoped to one review queue.
GET /v1/o11y/llm/annotation
| Address | https://api.hanzo.ai/v1/o11y/llm/annotation |
| Method | GET |
| Operation | ListLLMAnnotations |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Lists human annotations on traces and observations, optionally scoped to one review queue.
Callers need the viewer role; the runtime's own gate enforces it.
Request
5 fields.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
traceId | query | string | — | TraceID narrows to annotations on one trace. |
queue | query | string | — | Queue narrows to one review queue. |
status | query | string | — | Status narrows to one review status, e.g. |
offset | query | integer | — | Offset is how many rows to skip, for paging. |
limit | query | integer | — | Limit caps how many rows come back. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | o11y.O11yLLMAnnotationsOut | ok |
200 body — 15 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | o11y.O11yLLMAnnotationsPage | — | |
data.items | body | o11y.O11yLLMAnnotation[] | — | Items are the annotations, newest first. |
data.items[].author | body | string | — | Author is who wrote it. |
data.items[].content | body | string | — | Content is the note itself. |
data.items[].createdAt | body | string (date-time) | — | CreatedAt is when the annotation was stored. |
data.items[].id | body | string | — | ID is the annotation's id. |
data.items[].observationId | body | string | — | ObservationID is the observation the annotation attaches to, when narrowed. |
data.items[].queue | body | string | — | Queue is the review queue the annotation sits in, when queued. |
data.items[].status | body | string | — | Status is the annotation's review status, e.g. |
data.items[].traceId | body | string | — | TraceID is the trace the annotation attaches to. |
data.items[].updatedAt | body | string (date-time) | — | UpdatedAt is when the annotation last changed. |
data.limit | body | integer | — | Limit is the page cap the read ran with. |
data.offset | body | integer | — | Offset is the row offset this page started at. |
data.total | body | integer | — | Total is how many annotations match, across all pages. |
status | body | string | — | Status is "success". |
Failure carries the platform error shape — see Errors.
Examples
hanzo o11y llm annotation getimport { Configuration, O11yApi } from 'hanzoai';
const api = new O11yApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.listLLMAnnotations();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).list_llm_annotations()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.O11yAPI.ListLLMAnnotations(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::list_llm_annotations(&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).listLLMAnnotations();curl https://api.hanzo.ai/v1/o11y/llm/annotation \
-H "Authorization: Bearer $HANZO_API_KEY"Tool o11y, op ListLLMAnnotations — 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": "ListLLMAnnotations",
"input": {}
}
}
}'How is this guide?