GET
/
executions
/
{execution_id}
/
log
cURL
curl --request GET \
  --url https://api.bolna.ai/executions/{execution_id}/log \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": "2024-01-23T05:14:37Z",
      "type": "request",
      "component": "synthesizer",
      "provider": "openai",
      "data": "Hello world"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

execution_id
string
required

The unique execution_id

Response

200
application/json

Retrieve specific execution raw logs

The response is of type object.