v51

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

Get queued items for a specific queue

Returns one forward-only page of queued DAG-runs for the specified queue, ordered from the queue head toward the tail. The opaque cursor resumes after the last scanned queue entry.

get/queues/{name}/items

Path parameters

namestring required

Queue name

Query parameters

remoteNodestring

name of the remote node

limitinteger

Maximum number of queued DAG-runs to return (default 100)

cursorstring

Opaque cursor for loading the next page of queued DAG-runs

Response

A successful response

nextCursorstring

Opaque cursor for loading the next page of queued DAG-runs

Example response

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