List Queues
GEThttps://api.confident-ai.com/v1/annotation-queues
Retrieves all annotation queues in your project with statistics and pagination support. Each queue includes completion metrics, item counts, and assignment breakdowns.
Filter results by queue type (TRACE, SPAN, THREAD, GOLDEN, TEST_RUN) or search by name. Queues are returned in descending order by creation date.
curl -X GET "https://api.confident-ai.com/v1/annotation-queues" \
-H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"{
"success": true,
"data": {
"annotationQueues": [
{
"id": "queue-uuid-1",
"name": "Trace Review Queue",
"type": "TRACE",
"createdAt": "2025-11-12T10:00:00Z",
"updatedAt": "2025-11-12T11:00:00Z",
"completedItems": 45,
"totalItems": 100,
"completionPercentage": 45
},
{
"id": "queue-uuid-2",
"name": "Span Quality Check",
"type": "SPAN",
"createdAt": "2025-11-11T09:00:00Z",
"updatedAt": "2025-11-12T10:00:00Z",
"completedItems": 20,
"totalItems": 50,
"completionPercentage": 40
}
],
"total": 2
}
}Headers
CONFIDENT_API_KEYstringRequiredThe API key of your Confident AI project.
Query parameters
pageintegerThis specifies the page number of the annotation queues to return. Defaulted to 1.
pageSizeintegerThis specifies the maximum number of annotation queues per page. Defaulted to 25.
startstringThis filters for annotation queues created after the specified start datetime. Defaulted to 30 days ago.
endstringThis filters for annotation queues created before the specified end datetime. Defaulted to the current time.
sortByenumThis determines the field to sort by. Defaulted to
createdAt.ascendingenumThis determines if the field specified in
sortByshould be in ascending order. Defaults tofalse.typeenumFilter by queue type
searchTermstringSearch queues by name
Response
Successfully retrieved list of annotation queues
successbooleanIndicates if the request was successful.
dataobjectShow 4 propertiesHide 4 properties
annotationQueueslist of objectsShow 8 propertiesHide 8 properties
idstringThe unique identifier of the annotation queue.
namestringThe name of the annotation queue.
typeenumThe type of items this queue contains.
Show 5 enum valuesHide 5 enum values
TRACESPANTHREADGOLDENTEST_RUN
createdAtstringThe timestamp when the annotation queue was created.
updatedAtstringThe timestamp when the annotation queue was last updated.
completedItemsintegerThe number of items in the queue that have been completed.
totalItemsintegerThe total number of items in the queue.
completionPercentageintegerThe percentage of items completed in the queue (0-100).
totalintegerThe total number of annotation queues matching the filter criteria.
limitintegerThe maximum number of annotation queues returned in this response.
offsetintegerThe number of annotation queues skipped in this response.