PIN Code API


By this IP-API, we providing following details of given PIN Code:

  • Name
  • Branch Type
  • Delivery Status
  • Circle
  • District
  • Division
  • Region
  • Block
  • State
  • Country

API Url:
https://apis.ausoftwaresolutions.in/v1/postal/pin-code/

How to Use PIN Code API

You can use it in various programming languages. API recieves data in JSON format and return as well. So I am giving a sample in PHP Script to use URL info API.

<?php
$CURL 
curl_init();
$API_URL "https://apis.ausoftwaresolutions.in/v1/postal/pin-code/";
$POST = [
    
"PIN_CODE" => "YOUR / ANY PIN CODE"
    "API_KEY" 
=> "Your API Key"
];
$POST json_encode($POST);
curl_setopt($CURLCURLOPT_URL$API_URL);
curl_setopt($CURLCURLOPT_POST1);
curl_setopt($CURLCURLOPT_POSTFIELDS$POST);
curl_setopt($CURLCURLOPT_CUSTOMREQUEST"POST");
// Receive API response ...
curl_setopt($CURLCURLOPT_RETURNTRANSFERtrue);
$OUTPUT curl_exec($CURL);
echo 
$OUTPUT;
curl_close ($CURL);
?>

API Limits for Free Uses

API request for free use is limited. We provide 150 request free per user for 1 year. We have anothers plans for your convinous. You may choose plans from ourAPI plans for more API uses. You will be provided a API dashboard for check or extend your API Uses.

Login to your account