Skip to main content
POST
/
v1
/
runs
/
batch
Batch get runs
curl --request POST \
  --url https://app.galaxy.ai/api/v1/runs/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "<string>"
  ]
}
'
{
  "runs": [
    {
      "id": "<string>",
      "status": "<string>",
      "workflowId": "<string>",
      "triggerRunId": "<string>",
      "createdAt": "<string>",
      "startedAt": "<string>",
      "finishedAt": "<string>",
      "error": "<string>",
      "context": null,
      "nodeRuns": [
        {
          "nodeId": "<string>",
          "nodeType": "<string>",
          "status": "<string>",
          "input": null,
          "output": null,
          "logs": null,
          "error": "<string>",
          "startedAt": "<string>",
          "finishedAt": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
ids
string[]
required
Minimum array length: 1
Minimum string length: 1

Response

Successful response

runs
object[]
required