Skip to content

Instantly share code, notes, and snippets.

@erichowey
Last active June 26, 2020 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erichowey/07d9bc2220f2327d940b6976bf0c4d28 to your computer and use it in GitHub Desktop.
Save erichowey/07d9bc2220f2327d940b6976bf0c4d28 to your computer and use it in GitHub Desktop.
Proposed Number Search API King Cobra
GET /api/king-cobra/v2/nanp/search/local
AT LEAST ONE OF THE FOLLOWING PARAMTERS ARE REQUIRED:
area_code
state_province
zip_postal
country
rate_center
PARAMETERS
area_code # 3 digit NPA
state_province #2 digit state/province ISO code
zip_postal #zip or postal
country #2 digit country ISO code
rate_center #rate center
vanity_search #accepts any number, letter and * for wildcard
messaging_required #boolean
per_page #how many items per page
limit #limit the amount of results
#RESPONSE
{
"data": [
{
"phone_number": "+13124562534",
"state_province": "IL",
"zip_postal": "60601",
"country": "US",
"rate_center": "CHICGOZN1",
"messaging_available": true
},
{
"phone_number": "+13124562536",
"state_province": "IL",
"zip_postal": "60601",
"country": "US",
"rate_center": "CHICGOZN1",
"messaging_available": true
}
],
"total": 50,
"count": 2,
"per_page": 25,
"current_page": 1,
"total_pages": 2,
"next_page_url": "foo",
"prev_page_url": "foo",
"first_page_url": "foo",
"last_page_url": "foo",
"path": "foo",
"from": "foo",
"to": "foo"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment