List Numbers

List all numbers available for specific ratecenter / state

GET or POST Request

https://v1.api19.com/dids/available/list?key=yourkey​

Send us a GET/POST request with your key (in the URI as key or as http password)

Ratecenter / State search You can send ratecenter=[ratecenter] and state=[state]

Area Code Search If you would rather get by area code, you can send npa=[areacode]

Toll Free Search To request toll free, send state=tf in your request

We give you the City and Ratecenter so you can get human readable data (for instance ratecenter LSAN DA 01 is actually Los Angeles: 01 as the City.

Argument

Required

Type

state

yes

string

ratecenter

no

string

quantity

no

int

npa

no

int

nxx

no

int

related

no

yes set to yes if you only want the specific area code requested and nothing else

random

no

yes randomize numbers in response

key

yes

your API key

curl -X POST https://v1.api19.com/dids/available/list \
 -d 'ratecenter=AUSTIN' \
 -d 'state=TX' \
 -d 'quantity=2' \
 -d 'key=your-api-key'
 
or area code based

curl -X POST https://v1.api19.com/dids/available/list \
 -d 'npa=303' \
 -d 'quantity=2' \
 -d 'key=your-api-key'
 
or toll free request

curl -X POST https://v1.api19.com/dids/available/list \
 -d 'state=tf' \
 -d 'key=your-api-key'

Last updated