---
title: "Get list of request queues"
method: GET
path: "/v2/request-queues"
tags: ["Storage/Request queues"]
---

# Get list of request queues

`GET /v2/request-queues`

Lists all of a user's request queues. The response is a JSON array of
objects, where each object
contains basic information about one queue.

By default, the objects are sorted by the `createdAt` field in ascending order,
therefore you can use pagination to incrementally fetch all queues while new
ones are still being created. To sort them in descending order, use `desc=1`
parameter. The endpoint supports pagination using `limit` and `offset`
parameters and it will not return more than 1000
array elements.

## Query parameters

- `offset` number, double
- `limit` number, double
- `desc` boolean
- `unnamed` boolean
- `ownership` 'ownedByMe' | 'sharedWithMe'

## Response `200`

- ListOfRequestQueuesResponse — Response containing a list of request queues.
  - `data` ListOfRequestQueues, required — Common pagination fields for list responses.
    - `total` integer, required — The total number of items available across all pages.
    - `offset` integer, required — The starting position for this page of results.
    - `limit` integer, required — The maximum number of items returned per page.
    - `desc` boolean, required — Whether the results are sorted in descending order.
    - `count` integer, required — The number of items returned in this response.
    - `unnamed` boolean — Whether the listing was filtered to only unnamed request queues.
    - `items` RequestQueueShort[], required — The array of request queues.
      - `id` string, required — A unique identifier assigned to the request queue.
      - `name` string, required — The name of the request queue.
      - `userId` string, required — The ID of the user who owns the request queue.
      - `username` string, required — The username of the user who owns the request queue.
      - `createdAt` string, date-time, required — The timestamp when the request queue was created.
      - `modifiedAt` string, date-time, required — The timestamp when the request queue was last modified. Modifications include adding, updating, or removing requests, as well as locking or unlocking requests in the request queue.
      - `accessedAt` string, date-time, required — The timestamp when the request queue was last accessed.
      - `expireAt` string, date-time — The timestamp when the request queue will expire and be deleted.
      - `totalRequestCount` integer, required — The total number of requests in the request queue.
      - `handledRequestCount` integer, required — The number of requests that have been handled.
      - `pendingRequestCount` integer, required — The number of requests that are pending and have not been handled yet.
      - `actId` string, nullable — The ID of the Actor that created this request queue.
      - `actRunId` string, nullable — The ID of the Actor run that created this request queue.
      - `hadMultipleClients` boolean, required — Whether the request queue has been accessed by multiple different clients.
      - `generalAccess` 'ANYONE_WITH_ID_CAN_READ' | 'ANYONE_WITH_NAME_CAN_READ' | 'FOLLOW_USER_SETTING' | 'RESTRICTED' — Defines the general access level for the resource.
      - `stats` RequestQueueStats — Statistics about request queue operations and storage.
        - `deleteCount` integer — The number of delete operations performed on the request queue.
        - `headItemReadCount` integer — The number of times requests from the head were read.
        - `readCount` integer — The total number of read operations performed on the request queue.
        - `storageBytes` integer — The total storage size in bytes used by the request queue.
        - `writeCount` integer — The total number of write operations performed on the request queue.

## Other responses

- `400` — Bad request - invalid input parameters or request body.
- `401` — Unauthorized - authentication required or invalid token.
- `403` — Forbidden - insufficient permissions to perform this action.
- `405` — Method not allowed.
- `429` — Too many requests - rate limit exceeded.

---

[API](https://skmtc.net/apify/apis/apify-api.md) · [All operations](https://skmtc.net/apify/apis/apify-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/apify/apify-api/versions/01a71794279b/schema)
