GET
/
api
/
v1
/
runs
/
{run_id}
Get Run
curl --request GET \
  --url https://your-deployment-api-url.pod.flowscale.ai/api/v1/runs/{run_id} \
  --header 'X-API-KEY: <api-key>'
{
  "status": "<string>",
  "data": {
    "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

Path Parameters

run_id
string
required

Response

200
application/json

Successful Response

The response is of type object.