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

# List available providers

> List every provider you can connect, grouped by channel

Returns the providers available on the platform grouped by channel — useful for
rendering a "connect a provider" picker, or for discovering which telephony
providers you can register numbers against.

### Query parameters

<ParamField query="channel" type="string">
  Filter to a single channel, e.g. `VOICE`, `WHATSAPP`, `SMS`
</ParamField>

<CodeGroup>
  ```bash curl theme={null}
  curl "https://api.agentic-os.com/api/v1/integrations/providers?channel=VOICE" \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  requests.get(
      "https://api.agentic-os.com/api/v1/integrations/providers",
      headers={"Authorization": f"Bearer {API_KEY}"},
      params={"channel": "VOICE"},
  )
  ```

  ```javascript Node theme={null}
  await fetch(
    "https://api.agentic-os.com/api/v1/integrations/providers?channel=VOICE",
    { headers: { Authorization: `Bearer ${API_KEY}` } },
  );
  ```
</CodeGroup>

### Response

```json theme={null}
[{ "channel": "VOICE", "providers": ["TWILIO", "PLIVO", "ACEFONE"] }]
```
