List States
This function will allow you to list all states available for ordering numbers.
URL:
Simply send us a GET to the above URL to get an API response with the list of states. Response codes are in the menu to the left.
shell
PHP+CURL
PHP+PLAIN
RESPONSE
Shell/CURL
curl -v -X GET "https://apiv1.teleapi.net/dids/states?token=XXXX"
Using PHP+CURL
<?php
$baseurl = "https://apiv1.teleapi.net/dids/states?token=XXXX";
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$retval = curl_exec($ch);
curl_close($ch);
$object = json_decode($retval);
print_r($object);
PHP - file_get_contents
<?php
$url = "https://apiv1.teleapi.net/dids/states?token=XXXX";
$x = file_get_contents($url);
$object = json_decode($x);
print_r($object);
Last modified 3yr ago