Skip to main content
GET
/
executions
/
{execution_id}
/
log
cURL
curl --request GET \
  --url https://api.bolna.ai/executions/{execution_id}/log \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": [
    {
      "created_at": "2024-01-23T05:14:37Z",
      "type": "request",
      "component": "synthesizer",
      "provider": "openai",
      "data": "Hello world",
      "reasoning_content": "**Defining the topic**\\n\\nPlanning a short, conversational reply..."
    }
  ]
}
For each item in data, when component is llm and type is response, the assistant text is in data. If the model exposed traceable reasoning for that turn, reasoning_content is also set; otherwise the field is omitted. Use this to debug or display model thinking alongside the spoken reply.

Authorizations

Authorization
string
header
required

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

Path Parameters

execution_id
string<uuid>
required

The unique execution_id

Response

Retrieve specific execution raw logs

status
string

Status of the API response

Example:

"success"

data
object[]