API Documentation DH-Boss


GST Number Verification API - DHBOSS API

With GST law implementation, all registered taxpayers got combined into one single platform for compliance and administration purposes and are assigned a unique registration number i.e. unique Goods and Services Tax Identification Number (GSTIN) controlled and managed by the single authority. Every business who crosses the threshold limit prescribed under this act must register themselves with the government. GST Verification API is a system which helps an enterprise to do GSTIN verification by using the GSTIN number of any registered company with highest accuracy in record time. The user enters the GSTIN number, then that number is used to fetch the data from the backend & then the data is sent back to your system which can then use it to verify company details. You can check the validity of the GSTIN number and can also verify all the other data of company associated with GSTIN Number. A user can verify GSTIN registration either by entering the GSTIN number. The online GSTIN Verification is done by using an instant GST Verification API. SurePass is the best online GST Verification API provider in the market which allows you to do GSTIN Verification in less than a second. - docs.dhboss.com


GET/POST : GSTIN_INFO

What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC

Input Parameters Detail
Name Type Description Mandatory
gst_number String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
success boolean 1
response.stjCd string DL055
response.lgnm string Dummy Name
response.stj string Ward 55
response.dty string Regular
response.cxdt string
response.nba.0 string Retail Business
response.nba.1 string Works Contract
response.nba.2 string Supplier of Services
response.nba.3 string Office / Sale Office
response.nba.4 string Recipient of Goods or Services
response.gstin string 07AAAAA0000A1ZQ
response.lstupdt string 17/06/2022
response.rgdt string 17/06/2022
response.ctb string Proprietorship
response.pradr.addr.bnm string
response.pradr.addr.st string -
response.pradr.addr.loc string City Name
response.pradr.addr.bno string WZ-6 A-9
response.pradr.addr.stcd string State
response.pradr.addr.dst string West State
response.pradr.addr.city string
response.pradr.addr.flno string
response.pradr.addr.lt string 28.651263
response.pradr.addr.pncd string 110015
response.pradr.addr.lg string 77.147009
response.pradr.ntr string Retail Business, Works Contract, Supplier of Services, Office / Sale Office, Recipient of Goods or Services
response.tradeNam string My Business International
response.sts string Active
response.ctjCd string ZL02055
response.ctj string RANGE - 100






Call API URL
https://api.dhboss.com/apicall/gstin_info/
API Call Request Parameters
gst_number=value&apikeyfill=value                                                   
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/gstin_info/',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_REFERER=> 'domain.com',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => 'gst_number=07AAAAA0000A1ZQ&apikeyfill=5********5
',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
  "success": true,
  "response": {
    "stjCd": "DL055",
    "lgnm": "Dummy Name",
    "stj": "Ward 55",
    "dty": "Regular",
    "adadr": [],
    "cxdt": "",
    "nba": [
      "Retail Business",
      "Works Contract",
      "Supplier of Services",
      "Office / Sale Office",
      "Recipient of Goods or Services"
    ],
    "gstin": "07AAAAA0000A1ZQ",
    "lstupdt": "17/06/2022",
    "rgdt": "17/06/2022",
    "ctb": "Proprietorship",
    "pradr": {
      "addr": {
        "bnm": "",
        "st": "-",
        "loc": "City Name",
        "bno": "WZ-6 A-9",
        "stcd": "State",
        "dst": "West State",
        "city": "",
        "flno": "",
        "lt": "28.651263",
        "pncd": "110015",
        "lg": "77.147009"
      },
      "ntr": "Retail Business, Works Contract, Supplier of Services, Office / Sale Office, Recipient of Goods or Services"
    },
    "tradeNam": "My Business International",
    "sts": "Active",
    "ctjCd": "ZL02055",
    "ctj": "RANGE - 100"
  }
}