Skip to main content
GET
/
countries
/
{country_code}
/
number-types
Get Country Number Types
curl --request GET \
  --url https://api.kallabot.com/countries/{country_code}/number-types \
  --header 'Authorization: Bearer <token>'
{
  "country_code": "US",
  "available_types": {
    "local": {
      "available": true,
      "name": "Local Numbers",
      "description": "Numbers assigned to a specific geographic region"
    },
    "toll-free": {
      "available": true,
      "name": "Toll-Free Numbers",
      "description": "Free for callers, you pay for incoming calls"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

country_code
string
required

ISO country code

Response

Available number types for country

country_code
string
required
available_types
object
required