Skip to main content
GET
/
numbers
/
available
List available numbers
curl --request GET \
  --url https://api.pokulabs.com/numbers/available \
  --header 'Authorization: Bearer <token>'
[
  {
    "phoneNumber": "+12184034360",
    "locality": "Hibbing",
    "region": "MN",
    "country": "US"
  },
  {
    "phoneNumber": "+12184008148",
    "locality": "Warren",
    "region": "MN",
    "country": "US"
  }
]

Authorizations

Authorization
string
header
required

Authentication header containing your Poku API key. Find it in the Poku dashboard. The format is "Bearer YOUR_API_KEY"

Query Parameters

country
enum<string>
default:US
Available options:
US,
GB
areaCode
integer

Only used for US numbers.

Required range: 100 <= x <= 999

Response

200 - application/json

List of available phone numbers.

phoneNumber
string

The phone number in E.164 format.

locality
string

City or locality of the number.

region
string

State or region code.

country
string

Two-letter country code.