GET
/
api
/
v1
/
runs
Get Runs
curl --request GET \
  --url https://your-deployment-api-url.pod.flowscale.ai/api/v1/runs \
  --header 'X-API-KEY: <api-key>'
{
  "status": "<string>",
  "data": {
    "group_id": "<string>",
    "count": 123,
    "runs": [
      {
        "workflow_id": "<string>",
        "group_id": "<string>",
        "status": "<string>",
        "inputs": [
          {}
        ],
        "output_names": [
          "<string>"
        ],
        "outputs": [
          {}
        ],
        "created_at": "<string>",
        "started_at": "<string>",
        "completed_at": "<string>"
      }
    ]
  },
  "errors": "<string>",
  "meta": {}
}

Authorizations

X-API-KEY
string
header
required

Query Parameters

group_id
string
required

Response

200
application/json

Successful Response

The response is of type object.