v51

latestOpenAPI 3.0.0GPL-3.0raw.githubusercontent.com2026-08-01199241439.9 KB
queues

Get summary information for a specific queue

Returns queue metadata, running items, and queued counts for the specified queue.

get/queues/{name}

Path parameters

namestring required

Queue name

Query parameters

remoteNodestring

name of the remote node

Response

A successful response

namestring required

Name of the queue (global queue name or DAG name if no queue specified)

type'global' | 'dag-based' required

Type of queue - 'global' if explicitly defined, 'dag-based' if using DAG name

maxConcurrencyinteger

Maximum number of concurrent runs allowed. For 'global' queues, this is the configured maxConcurrency. For 'dag-based' queues, this is always 1 (FIFO execution)

runningCountinteger required

Number of currently running DAG-runs

queuedCountinteger required

Number of queued DAG-runs waiting to execute

Example response

{
  "running": [
    {
      "dagRunId": "latest"
    }
  ]
}