Postman is a free REST client and has helped millions of developers deliver great results. Create better APIs faster, streamline collaboration, and automate testing.
Create a developer account and download our Postman collection to speed up your integration.
Here is the list of some of the available APIs for IoT developers. We can also build the APIs based on your business requirements.
Post sample
curl –location –request POST ‘https://sandbox.sensitek.com/v1/iot/address-validate-address’ \
–header ‘Authorization: Bearer YzkzMzliZjctNWYyOS00MmNjLTk4YTQtNDBlNWY5ZDU3YjI5’ \
–header ‘Content-Type: application/json’ \
–header ‘Accept: application/json’ \
–data-raw ‘{
“street1”: “3940 30th street”,
“city”:”Long Island”,
“state”:”NY”,
“zip”:”11101″
}’
Get Sample
curl –location –request GET ‘https://sandbox.sensitek.com/v1/authenticate’ \
–header ‘Authorization: Basic dXNyOTg3MzEzNTc0OkXXXXXXXXXXXXXXXXXXXX’ \
–header ‘Content-Type: application/json’ \
–header ‘Accept: application/json’
Post sample
var settings = {
“url”: “https://sandbox.sensitek.com/v1/iot/address-validate-address”,
“method”: “POST”,
“timeout”: 0,
“headers”: {
“Authorization”: “Bearer YzkzMzliZjctNWYyOS00MmNjLTk4YTQtNDBlNWY5ZDU3YjI5”,
“Content-Type”: “application/json”,
“Accept”: “application/json”
},
“data”: JSON.stringify ({
“street1”: “3940 30th street”,
“city”: “Long Island”,
“state”: “NY”,
“zip”: “11101”
}),
};
$.ajax(settings).done(function (response) {
console.log(response);
});
Get Sample
var settings = {
“url”: “https://sandbox.sensitek.com/v1/authenticate”,
“method”: “GET”,
“timeout”: 0,
“headers”: {
“Authorization”: “Basic dXNyOTg3MzEzNTc0OkXXXXXXXXXXXXXXXXXXXX”,
“Content-Type”: “application/json”,
“Accept”: “application/json”
},
};
$.ajax(settings).done(function (response) {
console.log(response);
});
Post sample
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => ‘https://sandbox.sensitek.com/v1/iot/address-validate-address’,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => ”,
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => ‘POST’,
CURLOPT_POSTFIELDS =>'{
“street1”: “3940 30th street”,
“city”:”Long Island”,
“state”:”NY”,
“zip”:”11101″
}’,
CURLOPT_HTTPHEADER => array(
‘Authorization: Bearer YzkzMzliZjctNWYyOS00MmNjLTk4YTQtNDBlNWY5ZDU3YjI5’,
‘Content-Type: application/json’,
‘Accept: application/json’
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Get Sample
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => ‘https://sandbox.sensitek.com/v1/authenticate’,CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => ”,
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => ‘GET’,
CURLOPT_HTTPHEADER => array(
‘Authorization: Basic dXNyOTg3MzEzNTc0OkXXXXXXXXXXXXXXXXXXXX’,
‘Content-Type: application/json’,
‘Accept: application/json’
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Post sample
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(“application/json”));
client.DefaultRequestHeaders.Add(“Authorization”, “Bearer YzkzMzliZjctNWYyOS00MmNjLTk4YTQtNDBlNWY5ZDU3YjI5”);
string body = “{\”street1\”: \”3940 30th street\”,\”city\”:\”Long Island\”,\”state\”:\”NY\”,\”zip\”:\”11101\”}”;
HttpResponseMessage Wresponse = client.PotAsync(“https://sandbox.sensitek.com/v1/iot/address-validate-address”, new StringContent(body, System.Text.Encoding.UTF8, “application/json”)).Result;
Console.WriteLine(Wresponse.Content.ReadAsStringAsync().Result);
Get Sample
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(“application/json”));
client.DefaultRequestHeaders.Add(“Authorization”, “Basic dXNyOTg3MzEzNTc0OkXXXXXXXXXXXXXXXXXXXX”);
HttpResponseMessage Wresponse = client.GetAsync(“https://sandbox.sensitek.com/v1/authenticate”).Result;
Console.WriteLine(Wresponse.Content.ReadAsStringAsync().Result);
Just complete the form on this page.
Yes, our API documentation contains the test data needed for IoT developer testing.
To request a technical briefing just complete the form on this page.
Create an IoT developer account to get integration keys, documentation, and a sandbox account.
Yes, please click here to request access and a test SIM.
Still have questions?