> ## 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 all executions

> List all call/chat executions for an agent

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

  To list an agent's calls, use **`GET /call-logs`**, which is filterable by
  agent and supports the same pagination described below.
</Callout>

### Path parameters

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

### Query parameters

<ParamField query="page" type="integer">
  Page number
</ParamField>

<ParamField query="pageSize" type="integer">
  Results per page
</ParamField>

<ParamField query="status" type="string">
  Filter by execution status
</ParamField>

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

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

### Response

```json theme={null}
{
  "items": [
    { "executionId": "660e8400-...", "status": "completed", "duration": 125 }
  ],
  "total": 42,
  "page": 1,
  "pageSize": 20
}
```
