Skip to main content
GET
/
v1beta
/
runs
/
{run_id}
/
logs
Get run logs
curl --request GET \
  --url https://api.example.com/v1beta/runs/{run_id}/logs \
  --header 'Authorization: Bearer <token>'
{
  "stdout": "<string>",
  "stderr": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key as the bearer token. Set header: Authorization to Bearer <api_key>

Path Parameters

run_id
string<uuid>
required

The ID of the run to get logs for.

Response

Successful response

stdout
string
required

Standard output from the run execution.

stderr
string
required

Standard error output from the run execution.