Skip to main content
Returns all phone numbers associated with your account, including their type, capabilities, and subscription status.

Endpoint

GET /user/phone-numbers/all

Response

data
array
Array of phone number objects.

Example

curl -X GET "https://portal.intellixent.ai/api/user/phone-numbers/all" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 Response
{
  "data": [
    {
      "id": 1,
      "phone_number": "+14155551234",
      "country_code": "US",
      "type": "normal",
      "type_label": "Dedicated Number",
      "sms_capable": true,
      "region": "us1",
      "has_active_subscription": true,
      "created_at": "2025-01-08T10:30:00.000000Z"
    },
    {
      "id": 2,
      "phone_number": "+442071234567",
      "country_code": "GB",
      "type": "normal",
      "type_label": "Dedicated Number",
      "sms_capable": false,
      "region": "us1",
      "has_active_subscription": true,
      "created_at": "2025-01-05T14:20:00.000000Z"
    }
  ]
}
This endpoint returns all phone numbers regardless of SMS capability or subscription status. Use it when you need a complete view of your account’s phone numbers.