Skip to main content

Channels

The Channels API provides real-time information about active calls (channels) in your account.

Base URL​

https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/channels

Overview​

Channels represent active calls in the system. Use this API to monitor current call activity, get real-time status updates, and build dashboards showing live call information.

Endpoints​

MethodEndpointDescription
GET/channelsList all active channels

List Active Channels​

curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/channels" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"

Response​

{
"auth_token": "{AUTH_TOKEN}",
"data": [
{
"uuid": "channel_abc123",
"call_id": "call_xyz789",
"caller_id_number": "+15551234567",
"callee_id_number": "+15559876543",
"direction": "inbound",
"state": "active",
"timestamp": 1704067200
}
],
"request_id": "{REQUEST_ID}",
"status": "success"
}

See Also​

  • CDRs - Historical call records
  • WebSockets - Real-time event streaming
Documentation In Progress

This documentation is being expanded. Check back soon for complete API reference.