GET
/
v1
/
tasks
/
runs
/
{run_id}
/
result
curl --request GET \
  --url https://api.parallel.ai/v1/tasks/runs/{run_id}/result \
  --header 'x-api-key: <api-key>'
{
  "run": {
    "run_id": "trun_9907962f83aa4d9d98fd7f4bf745d654",
    "status": "completed",
    "is_active": false,
    "processor": "core",
    "metadata": {
      "my_key": "my_value"
    },
    "created_at": "2025-04-23T20:21:48.037943Z",
    "modified_at": "2025-04-23T20:21:48.037943Z"
  },
  "output": {
    "content": {
      "gdp": "$3.1 trillion (2023)"
    },
    "basis": [],
    "type": "json"
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

run_id
string
required

Query Parameters

timeout
integer
default:600

Response

200
application/json

Successful Response

Result of a task run.