Get Gstin Details

This method provides the tax payer details for a given GSTIN number.

Request Method

GET

Request Path

{{API_URL}}/api/v1/get-gstin-details/

Request Headers

ParameterValueDescription

Authorization/api_key

api_key/auth token

Value and header type is mentioned in the Authentication Page

Request Params

ParameterValueDescription

user_gstin

XXXXXXXXXXXXXXX

GSTIN of the authenticated user

gstin

XXXXXXXXXXXXXXX

Taxpayer gstin

Response Body

200 (OK)

Sample Response

{
  "results": {
    "message": {
      "Gstin": "XXXXXXXXXXXXXXX",
      "TradeName": null,
      "LegalName": "Masters India Private Limited",
      "AddrBnm": null,
      "AddrBno": null,
      "AddrFlno": null,
      "AddrSt": null,
      "AddrLoc": null,
      "StateCode": 5,
      "AddrPncd": 560009,
      "TxpType": "REG",
      "Status": "ACT",
      "BlkStatus": "U",
      "DtReg": null,
      "DtDReg": null
    },
    "errorMessage": "",
    "InfoDtls": "",
    "status": "Success",
    "code": 200
  }
}

204 (Invalid Parameters)

{
  "results": {
    "message": "",
    "errorMessage": "3001: Requested data is not available",
    "InfoDtls": "",
    "status": "Failed",
    "code": 204
  }
}

Last updated