---
title: "List annotation queues"
method: GET
path: "/v2/annotation-queues"
tags: ["Annotation Queues"]
---

# List annotation queues

`GET /v2/annotation-queues`

Retrieves a paginated list of annotation queues for the current workspace. Results can be paginated using cursor-based pagination.

## Query parameters

- `limit` integer — A limit on the number of objects to be returned. Limit can range between 1 and 200, and the default is 10
- `starting_after` string — A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, ending with `01JJ1HDHN79XAS7A01WB3HYSDB`, your subsequent call can include `after=01JJ1HDHN79XAS7A01WB3HYSDB` in order to fetch the next page of the list.
- `ending_before` string — A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 20 objects, starting with `01JJ1HDHN79XAS7A01WB3HYSDB`, your subsequent call can include `before=01JJ1HDHN79XAS7A01WB3HYSDB` in order to fetch the previous page of the list.
- `search` string — Filter annotation queues by display name (case-insensitive match).
- `updated_by` string — Comma-separated list of user IDs; returns annotation queues last updated by any of them.

## Response `200`

Annotation queues Retrieved Successfully

- object
  - `object` 'list', required
  - `data` object[], required
    - `_id` string, required — The unique identifier of the annotation queue
    - `display_name` string, required — The display name of the annotation queue
    - `description` string, required — The description of the annotation queue
    - `workspace_id` string, required — The unique identifier of the workspace it belongs to
    - `project_id` string — The project ID. When set, human reviews are resolved from the project automatically
    - `human_review_ids` string[], required — Legacy: manually selected human review IDs. Used only when project_id is not set
    - `metadata` object, required
      - `items_count` number, required — The number of items in the annotation queue
    - `created_by_id` string, uuid, nullable — The id of the user who created the resource
    - `updated_by_id` string, uuid, nullable — The id of the user who last updated the resource
    - `created` union — The date and time the resource was created
      - string, date-time
      - string, date-time
    - `updated` union — The date and time the resource was last updated
      - string, date-time
      - string, date-time
  - `has_more` boolean, required

---

[API](https://skmtc.net/orq-ai/apis/orq-ai-api.md) · [All operations](https://skmtc.net/orq-ai/apis/orq-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/orq-ai/orq-ai-api/revisions/2cd7e7f7bcb4/schema)
