List Numbers
List all numbers available for specific ratecenter / state
GET or POST Request
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'curl https://v1.api19.com/dids/available/list?ratecenter=AUSTIN&state=TX&key=api_token
or area code based
curl https://v1.api19.com/dids/available/list?npa=720&key=api_token
or a toll free request
curl https://v1.api19.com/dids/available/list?state=tf&key=api_tokenLast updated