Skip to main content
GET
/
api
/
v1
/
sip-trunks
/
{trunk_id}
curl "https://app.talkover.ai/api/v1/sip-trunks/trunk-uuid-1" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": {
    "id": "trunk-uuid-1",
    "name": "Primary Carrier — US",
    "provider_name": "carrier-x",
    "domain": "sip.carrier-x.com",
    "username": "user_42",
    "transport": "tls",
    "port": 5061,
    "outbound_proxy": null,
    "auth_realm": null,
    "is_active": true,
    "is_verified": true,
    "health_status": "healthy",
    "last_health_check_at": "2024-01-15T14:30:00Z",
    "created_at": "2024-01-01T10:00:00Z",
    "updated_at": "2024-01-15T14:30:00Z"
  }
}

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 SIP Trunk

Retrieve full configuration and status for a SIP trunk.

Endpoint

GET /api/v1/sip-trunks/{trunk_id}

Path Parameters

trunk_id
string
required
SIP trunk UUID.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

curl "https://app.talkover.ai/api/v1/sip-trunks/trunk-uuid-1" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "data": {
    "id": "trunk-uuid-1",
    "name": "Primary Carrier — US",
    "provider_name": "carrier-x",
    "domain": "sip.carrier-x.com",
    "username": "user_42",
    "transport": "tls",
    "port": 5061,
    "outbound_proxy": null,
    "auth_realm": null,
    "is_active": true,
    "is_verified": true,
    "health_status": "healthy",
    "last_health_check_at": "2024-01-15T14:30:00Z",
    "created_at": "2024-01-01T10:00:00Z",
    "updated_at": "2024-01-15T14:30:00Z"
  }
}

Notes

  • The password field is write-only and never returned.
  • Use Get SIP Trunk Health for the latest live health check.