Skip to main content
GET
/
v2
/
annotation-queues
/
{annotation_queue_id}
/
records
List annotation queue records
curl --request GET \
  --url https://api.arize.com/v2/annotation-queues/{annotation_queue_id}/records \
  --header 'Authorization: Bearer <token>'
{
  "records": [
    {
      "id": "aqr_001",
      "annotation_queue_id": "aq_abc123",
      "source_type": "spans",
      "data": {
        "input": "What is the capital of France?",
        "output": "Paris"
      },
      "annotations": [
        {
          "name": "accuracy",
          "label": "correct",
          "score": 1,
          "annotator": {
            "id": "usr_123",
            "email": "reviewer@example.com"
          }
        },
        {
          "name": "quality",
          "label": "good",
          "score": 0.95,
          "annotator": {
            "id": "usr_123",
            "email": "reviewer@example.com"
          }
        }
      ],
      "evaluations": [
        {
          "name": "relevance",
          "label": "relevant",
          "score": 0.95,
          "explanation": "The response directly answers the question"
        }
      ],
      "assigned_users": [
        {
          "user": {
            "id": "usr_123",
            "email": "reviewer@example.com"
          },
          "completion_status": "completed"
        }
      ]
    }
  ],
  "pagination": {
    "next_cursor": "cursor_12345",
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format

Path Parameters

annotation_queue_id
string
required

The unique identifier of the annotation queue A universally unique identifier

Example:

"RW50aXR5OjEyMzQ1"

Query Parameters

cursor
string

Opaque pagination cursor returned from a previous response (pagination.next_cursor). Treat it as an unreadable token; do not attempt to parse or construct it.

limit
integer
default:50

Maximum items to return

Required range: 1 <= x <= 500

Response

Returns a list of annotation queue record objects

records
object[]
required

A list of annotation queue records

pagination
object
required

Pagination metadata