Skip to main content

GST Verification

Verify any GSTIN instantly โ€” legal name, trade name, address, registration status, constitution, GPS coordinates, HSN goods aur monthly filing status.

Endpointโ€‹

GET/gst?number=19HKJPM4450C1Z1
Verify GSTIN โ€” complete taxpayer profile + HSN + filing.

Query Parametersโ€‹

ParameterTypeRequiredDescription
numberstringโœ…15-character GSTIN
fystringโŒFinancial year โ€” 2024, 2025, 2026
tip

fy diya โ†’ sirf filing data (fast, halka). Bina fy โ†’ complete taxpayer profile + HSN + filing.

# Complete profile (taxpayer + HSN + filing)
curl "https://api.apimitra.in/gst?number=19HKJPM4450C1Z1"

# SIRF filing data for a year (no unnecessary data)
curl "https://api.apimitra.in/gst?number=19HKJPM4450C1Z1&fy=2025"

Response โ€” fy diya ho toโ€‹

{
"status": "ok",
"api": "gst",
"gstin": "19HKJPM4450C1Z1",
"financial_year": "2025-2026",
"returns": [
{ "return_type": "GSTR1", "period": "March", "mode": "ONLINE", "filed_on": "26/05/2026", "status": "Filed" },
{ "return_type": "GSTR3B", "period": "March", "mode": "ONLINE", "filed_on": "20/04/2026", "status": "Filed" }
]
}

Galat fy โ†’ 400 error with available years list. Bina fy โ†’ full response below.

Response โ€” Full (bina fy)โ€‹

Response โ€” Extra Fieldsโ€‹

FieldDescription
hsn_goodsRegistered goods/services (HSN code + description)
filing_yearsAvailable financial years
filing_statusMonthly GSTR1/GSTR3B filing history (period, mode, date, status)

Exampleโ€‹

curl "https://api.apimitra.in/gst?number=19HKJPM4450C1Z1"
{
"status": "ok",
"gstin": "19HKJPM4450C1Z1",
"trade_name": "GENX COMPUTER",
"legal_name": "Arnab Modak",
"registration_status": "Active",
"registration_date": "22/06/2024",
"constitution": "Proprietorship",
"taxpayer_type": "Regular",
"nature_of_business": ["Retail Business", "Others"],
"state": "West Bengal",
"address": "C/O Haradhan Modak, Radhanagar, Ghatal",
"lat": 22.666033,
"lon": 87.732022,
"hsn_goods": [
{ "hsn": "8471", "description": "AUTOMATIC DATA PROCESSING MACHINES..." },
{ "hsn": "8523", "description": "DISCS, TAPES, SOLID-STATE STORAGE..." }
],
"filing_years": [
{ "year": "2024-2025", "value": "2024" },
{ "year": "2025-2026", "value": "2025" },
{ "year": "2026-2027", "value": "2026" }
],
"filing_status": {
"financial_year": "2024-2025",
"returns": [
{ "return_type": "GSTR1", "period": "March", "mode": "ONLINE", "filed_on": "15/04/2025", "status": "Filed" },
{ "return_type": "GSTR3B", "period": "March", "mode": "ONLINE", "filed_on": "20/04/2025", "status": "Filed" }
]
}
}

GSTIN Formatโ€‹

19 HKJPM4450C 1 Z 1
โ”‚ โ””โ”€โ”€โ”€PANโ”€โ”€โ”€โ”˜ โ”‚ โ”‚ โ”” check digit
โ”‚ โ”‚ โ”” entity number
โ”‚ โ”” Z (default)
โ”” 2-digit state code
PositionMeaning
1โ€“2State code (19 = West Bengal)
3โ€“12PAN of the taxpayer
13Entity number (1โ€“9)
14Z (default letter)
15Check digit

Malformed input returns 400.