GET
/
api
/
v1
/
phone-numbers
/
search
curl --request GET \
  --url https://cx-staging-three.fly.dev/api/v1/phone-numbers/search
[
  {
    "countryName": "United States",
    "countryCode": "US",
    "number": "+1234567890",
    "price": 1.99
  }
]

Query Parameters

countryCode
string
required

Search numbers by country

Response

200 - application/json
Return list of available numbers
countryName
string
required

The name of the country for the phone number.

Example:

"United States"

countryCode
string
required

The country code for the phone number.

Example:

"US"

number
string
required

The phone number.

Example:

"+1234567890"

price
number
required

The price for the phone number.

Example:

1.99