Skip to main content

GST Verification

GSTIN, short for Goods and Services Tax Identification Number, is a unique 15 digit identification number assigned to every taxpayer (primarily dealer or supplier or any business entity) registered under the GST regime.

API Integration

GST verification can be performed using the Verify GST API

Request

{
"gst": "05ABNTY3290P8ZB"
}

Response

If the GST is valid the response will be of the following format.

{
"code": 0,
"message": "Success",
"data": {
"stateJurisdictionCode": "HR051",
"taxpayerType": "Regular",
"stateJurisdiction": "Gurgaon (East) Ward 6",
"legalName": "TRENTIAL TECHNOLOGIES PRIVATE LIMITED",
"additionalAddresses": [],
"dateOfCancellation": "",
"gstin": "06AAJCT6095N1ZK",
"natureOfBusinessActivity": [
"Office / Sale Office",
"Export",
"Supplier of Services"
],
"lastUpdatedDate": "30/11/2023",
"constitutionOfBusiness": "Private Limited Company",
"dateOfRegistration": "10/04/2023",
"principalAddress": {
"address": {
"buildingName": "DLF PHASE-5",
"buildingNumber": "HD-195",
"floorNumber": "5TH FLOOR",
"longitude": "77.105533",
"locality": "Gurugram",
"latitude": "28.46608",
"pincode": "122002",
"street": "SECTOR-43",
"stateName": "Haryana"
},
"natureOfBusiness": "Office / Sale Office, Export, Supplier of Services"
},
"centreJurisdictionCode": "ZO0306",
"status": "Active",
"tradeName": "TRENTIAL TECHNOLOGIES PRIVATE LIMITED",
"centreJurisdiction": "R-20",
"eInvoiceStatus": "No"
}
}

If the GST is invalid the response will be of the following format.

{
"message": "Invalid GSTIN pattern"
}