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": "<string>",
    "status": "queued",
    "is_active": true,
    "warnings": [
      {
        "type": "spec_validation",
        "message": "<string>",
        "detail": {}
      }
    ],
    "processor": "<string>",
    "metadata": {},
    "created_at": "<string>",
    "modified_at": "<string>"
  },
  "output": {
    "content": "<string>",
    "basis": [
      {
        "field": "<string>",
        "citations": [
          {
            "title": "<string>",
            "url": "<string>",
            "excerpts": [
              "<string>"
            ]
          }
        ],
        "reasoning": "<string>",
        "confidence": "low"
      }
    ],
    "type": "text"
  }
}

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.

run
object
required

Task run object with status 'completed'.

output
object
required

Output from the task conforming to the output schema.