cURL
curl --request GET \ --url https://api.example.com/v1beta/runs/{run_id}/logs \ --header 'Authorization: Bearer <token>'
{ "stdout": "<string>", "stderr": "<string>" }
Retrieve stdout and stderr logs for a run.
Enter your API key as the bearer token. Set header: Authorization to Bearer <api_key>
Authorization
Bearer <api_key>
The ID of the run to get logs for.
Successful response
Standard output from the run execution.
Standard error output from the run execution.