> ## 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.

# List Callback Source Agents

> List outbound agents eligible to be sources for a callback agent

# List Callback Source Agents

List outbound agents that can be configured as **source agents** for a callback agent. A source agent's outbound calls become candidates for callback when the contact returns the call.

## Endpoint

```
GET /api/v1/callback-agents/source-agents
```

## 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/source-agents" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "agent-uuid-2",
        "name": "Sales Outbound",
        "direction": "outbound",
        "current_status": "published"
      },
      {
        "id": "agent-uuid-3",
        "name": "Survey Outbound",
        "direction": "outbound",
        "current_status": "published"
      }
    ]
  }
  ```
</ResponseExample>

## Notes

* Only published `outbound` agents are returned.
* Use the IDs in this list when calling [Set Agent as Callback](/api-reference/endpoints/set-agent-as-callback) or [Update Callback Sources](/api-reference/endpoints/update-callback-sources).
