Skip to main content
GET
/
v2
/
queues
List Queues
curl --request GET \
  --url https://qstash.upstash.io/v2/queues \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "createdAt": 123,
    "updatedAt": 123,
    "parallelism": 123,
    "paused": true,
    "lag": 123
  }
]

Authorizations

Authorization
string
header
required

QStash authentication token

Response

200 - application/json

List of queues

name
string

The name of the queue.

createdAt
integer<int64>

The creation timestamp of the queue in Unix milliseconds

updatedAt
integer<int64>

The last update timestamp of the queue in Unix milliseconds

parallelism
integer

The number of parallel consumers consuming from the queue

paused
boolean

Whether the queue is paused

lag
integer

The number of unprocessed messages that exist in the queue