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

# Get Callback Agent

> Retrieve callback configuration and stats for a specific agent

# Get Callback Agent

Retrieve detailed callback configuration for a single agent, including its source agents and recent callback activity.

## Endpoint

```
GET /api/v1/callback-agents/{agent_id}
```

## Path parameters

<ParamField path="agent_id" type="string" required>UUID of the callback agent.</ParamField>

## Request headers

<ParamField header="Authorization" type="string" required>
  Bearer token. Format: `Bearer talq_your_environment_token_here`
</ParamField>

## Examples

<RequestExample>
  ```bash theme={null}
  curl "https://app.talkover.ai/api/v1/callback-agents/agent-uuid-1" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "agent": {
        "id": "agent-uuid-1",
        "name": "Callback Handler",
        "direction": "inbound",
        "current_status": "published"
      },
      "source_agents": [
        { "id": "agent-uuid-2", "name": "Sales Outbound" },
        { "id": "agent-uuid-3", "name": "Survey Outbound" }
      ],
      "stats": {
        "total_callbacks_received": 184,
        "callbacks_answered": 142
      }
    }
  }
  ```
</ResponseExample>

## Error responses

### 404 — Not a Callback Agent

<ResponseExample>
  ```json theme={null}
  {
    "success": false,
    "message": "Agent is not configured as a callback agent"
  }
  ```
</ResponseExample>

## Notes

* To configure an agent as a callback, use [Set Agent as Callback](/api-reference/endpoints/set-agent-as-callback).
