Skip to main content
GET
/
voicelink
/
bots
List VoiceLink WebSocket bots
curl --request GET \
  --url https://api.vocobase.com/api/v2/voicelink/bots \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "data": [
      {
        "id": 93,
        "bot_name": "Vocobase +918011223344",
        "client_id": 415,
        "websocket_url": "wss://api.pipecat.daily.co/ws/twilio",
        "status": 1
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key in format: rg_live_xxxx. Pass as a Bearer token in the Authorization header.

Query Parameters

connection_id
string<uuid>

Optional unless multiple active VoiceLink connections exist.

VoiceLink bot search term.

status
enum<integer>

VoiceLink bot status filter: 1 active, 0 inactive.

Available options:
0,
1
reseller_id
integer

VoiceLink reseller ID filter.

Required range: x >= 1
client_id
integer

VoiceLink client ID filter.

Required range: x >= 1
per_page
integer

VoiceLink page size.

Required range: 1 <= x <= 1000
page
integer

VoiceLink page number.

Required range: x >= 1

Response

VoiceLink bots response.

A VoiceLink upstream response wrapped in the V2 success envelope. The data shape is forwarded from VoiceLink and may vary by endpoint.

success
boolean
required
data
required

VoiceLink upstream response body.