> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev.setoo.work/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get agent execution

> Retrieve details of a single agent call/chat execution

<Callout type="warning">
  **Not available.** `GET /agents/{id}/executions/{executionId}` is not
  implemented in the API, so this page has no request runner.

  For call detail — transcript, recording, cost and outcome — use
  **`GET /call-logs/{sessionId}/full`**.
</Callout>

### Path parameters

<ParamField path="id" type="string" required>
  The agent ID
</ParamField>

<ParamField path="executionId" type="string" required>
  The execution (session) ID
</ParamField>

<CodeGroup>
  ```bash curl theme={null}
  curl https://api.agentic-os.com/api/v1/agents/AGENT_ID/executions/EXECUTION_ID \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  requests.get(
      "https://api.agentic-os.com/api/v1/agents/AGENT_ID/executions/EXECUTION_ID",
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  ```
</CodeGroup>

### Response

```json theme={null}
{
  "executionId": "660e8400-e29b-41d4-a716-446655440000",
  "agentId": "550e8400-e29b-41d4-a716-446655440000",
  "status": "completed",
  "duration": 125,
  "transcript": [
    { "role": "agent", "content": "Hello! How can I help you today?" }
  ]
}
```
