Request
The name of the queue to retrieve.
Response
The creation time of the queue. UnixMilli
The update time of the queue. UnixMilli
The number of parallel consumers consuming from the queue.
The number of unprocessed messages that exist in the queue.
curl https://qstash.upstash.io/v2/queues/my-queue \
-H "Authorization: Bearer <token>"
{
"createdAt": 1623345678001,
"updatedAt": 1623345678001,
"name": "my-queue",
"parallelism" : 5,
"lag" : 100
}