Developer
⌘K
Dashboard
Phone Numbers POST

List Phone Numbers

List all phone numbers owned by your organization.

Endpoint
https://www.tabbly.io/api/phone-numbers/list

List Phone Numbers

Returns all phone numbers currently owned by your organization, including SIP trunk IDs and purchase dates.

Endpoint

http
POST https://www.tabbly.io/api/phone-numbers/list

Authentication

See Introduction. This is a POST endpoint — include api_key in the JSON request body.

Request body

Field Type Required Description
api_key string Yes Your organization API key

Example request

bash
curl -X POST "https://www.tabbly.io/api/phone-numbers/list" \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "YOUR_API_KEY"
  }'

Response

Success (200)

json
{
  "success": true,
  "organization_id": 3282,
  "count": 1,
  "phone_numbers": [
    {
      "phone_number": "+918031321970",
      "sip_trunk_id": 12345,
      "price": "5.00",
      "date_added": "2026-06-08 14:34:08"
    }
  ]
}

Error responses

json
{
  "success": false,
  "error": "Human-readable error description"
}
HTTP status When
400 Missing API key
401 Invalid API key
405 Method not POST