v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBLLM Observability
List LLM Observability annotation queues
List annotation queues. Optionally filter by project ID or queue IDs. These parameters are mutually exclusive. If neither is provided, all queues in the organization are returned.
get/api/v2/llm-obs/v1/annotation-queues
Query parameters
projectIdstring
Filter annotation queues by project ID. Cannot be used together with queueIds.
queueIdsstring[]
Filter annotation queues by queue IDs (comma-separated). Cannot be used together with projectId.
Response
OK
Example response
{
"data": [
{
"attributes": {
"annotation_schema": {
"label_schemas": [
{
"description": "Rating of the response quality.",
"id": "abc-123",
"is_required": true,
"max": 5,
"name": "quality",
"type": "score",
"values": [
"good",
"bad",
"neutral"
]
}
]
},
"created_at": "2024-01-15T10:30:00Z",
"created_by": "00000000-0000-0000-0000-000000000002",
"description": "Queue for annotating customer support traces",
"modified_at": "2024-01-15T10:30:00Z",
"modified_by": "00000000-0000-0000-0000-000000000002",
"name": "My annotation queue",
"owned_by": "00000000-0000-0000-0000-000000000002",
"project_id": "00000000-0000-0000-0000-000000000002"
},
"id": "00000000-0000-0000-0000-000000000001",
"type": "queues"
}
]
}