API Documentation DH-Boss


GST Return Status Check API - DHBOSS API

GST Return status api, You can use this API to check Return Status from GST Number, it provides you live data. How to Check GST Return Filing Status? You can check GST return status by just entering GSTIN and pressing Get Return Status Button. Can I check GST return status of other person? Yes, you can check return status of any person. You just need to know his/her exact GSTIN. This data is public and can be accessed by anyone. GST API is an application programming interface under GST. An API acts as an intermediary between two applications so that they can interact with each other. API is an essential aspect of easing GST compliance. - docs.dhboss.com


GET/POST : GST_RETURN_STATUS

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
financial_years String {Enter Value} Yes
gst_number String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
success boolean 1
response.valid string Y
response.mof string ONLINE
response.dof string 17-10-2022
response.rtntype string GSTR3B
response.ret_prd string 092022
response.arn string AA06Z
response.status string Filed






Call API URL
https://api.dhboss.com/apicall/gst_return_status/
API Call Request Parameters
financial_years=value&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/gst_return_status/',
  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 =>'financial_years=2022-23&gst_number=08AAAAA0000A1ZM&apikeyfill=apikey',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
  "success": true,
  "response": 
   {
        "valid": "Y",
        "mof": "ONLINE",
        "dof": "17-10-2022",
        "rtntype": "GSTR3B",
        "ret_prd": "092022",
        "arn": "AA06Z",
        "status": "Filed"
      }
  
}