Search rentable phone numbers in inventory
Searches the telephony provider's inventory for available numbers matching the requested country (and optional area code). Returns up to 5 candidates per call.
Use the returned phoneNumber value in POST /product/rent-number to actually rent it.
Query parameters
ISO 3166-1 alpha-2 country code (e.g. US, IN, GB).
Telephony provider to search.
Optional area-code / region filter — provider-dependent (US area codes for plivo/twilio, etc.).
Response
Successful response
Example response
{
"status": true,
"data": [
{
"phoneNumber": "13183747513",
"countryCode": "US",
"provider": "plivo",
"areaCode": "Louisiana"
}
]
}Changes
Changed in 2 of the 52 revisions of this API.23
- ●
added the new
customenum value to thedata/items/providerresponse property for the response status200response-property-enum-value-added
- ●
added the new
whatsappenum value to thedata/items/providerresponse property for the response status200response-property-enum-value-added
- ○
added the new enum value
customto thequeryrequest parameterproviderrequest-parameter-enum-value-added
- ○
added the new enum value
whatsappto thequeryrequest parameterproviderrequest-parameter-enum-value-added
- ●
- ○
endpoint added
endpoint-added
- ○