GET
/
{run_id}
/
result
curl -X GET \
  -H 'Authorization: Bearer $API_KEY' \
  -H 'Accept: application/json' \
  '$BASE_URL/workflows/$workflow_id'
{
  "result": "https://signed-url.s3.amazonaws.com/..."
}

Headers

x-api-key
string
required

Your API key. This is required by most endpoints to access the API programmatically. You can view your x-api-key using the 'Profile' tab on the website.

Authorization
string
required

Bearer token for authentication (JWT).

Path Parameters

run_id
string
required

The UUID of the run whose result you want to retrieve.

Response

200
application/json
Successful response. Returns JSON with a signed S3 URL, e.g. `{ "result": "https://..." }`
result
string

Signed URL or other location of run's output