curl -X GET "https://api.finscreener.in/api/gst/details?gstin=27AAACR5055K1ZZ" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
import requests
response = requests.get(
"https://api.finscreener.in/api/gst/details",
params={"gstin": "27AAACR5055K1ZZ"},
headers={"Authorization": f"Bearer {token}"}
)
gst = response.json()
{
"data": {
"GSTIN": "27AAACR5055K1ZZ",
"LegalName": "RELIANCE INDUSTRIES LIMITED",
"TradeName": "RELIANCE INDUSTRIES LIMITED",
"Status": "Active",
"TaxpayerType": "Regular",
"ConstitutionBusiness": "Public Limited Company",
"dateOfRegistration": "2017-07-01",
"state": "Maharashtra",
"Address": "3rd Floor, Maker Chambers IV, 222 Nariman Point",
"Pincode": "400021",
"COREBUSINESS": "Manufacturer",
"BusinessActivities": ["Factory/Manufacturing", "Wholesale Business"],
"hsnCodes": ["2710", "3901", "3902"],
"sacCodes": []
},
"rate_limit": {
"remaining": 93,
"limit": 100,
"reset": "2026-03-21T00:00:00Z"
}
}
Details (Rate Limited)
GST Details
Get detailed GST registration information by GSTIN
GET
/
api
/
gst
/
details
curl -X GET "https://api.finscreener.in/api/gst/details?gstin=27AAACR5055K1ZZ" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
import requests
response = requests.get(
"https://api.finscreener.in/api/gst/details",
params={"gstin": "27AAACR5055K1ZZ"},
headers={"Authorization": f"Bearer {token}"}
)
gst = response.json()
{
"data": {
"GSTIN": "27AAACR5055K1ZZ",
"LegalName": "RELIANCE INDUSTRIES LIMITED",
"TradeName": "RELIANCE INDUSTRIES LIMITED",
"Status": "Active",
"TaxpayerType": "Regular",
"ConstitutionBusiness": "Public Limited Company",
"dateOfRegistration": "2017-07-01",
"state": "Maharashtra",
"Address": "3rd Floor, Maker Chambers IV, 222 Nariman Point",
"Pincode": "400021",
"COREBUSINESS": "Manufacturer",
"BusinessActivities": ["Factory/Manufacturing", "Wholesale Business"],
"hsnCodes": ["2710", "3901", "3902"],
"sacCodes": []
},
"rate_limit": {
"remaining": 93,
"limit": 100,
"reset": "2026-03-21T00:00:00Z"
}
}
Retrieve comprehensive details for a GST registration by its GSTIN.
This endpoint is rate limited to 100 requests per day across all detail endpoints.
Headers
string
required
Bearer token:
Bearer <access_token>Query Parameters
string
required
GSTIN (e.g.,
27AAACR5055K1ZZ)Response
object
Show properties
Show properties
string
GST Identification Number
string
Legal name of business
string
Trade name
string
Active, Cancelled, etc.
string
Regular, Composition, etc.
string
Business constitution type
string
GST registration date
string
State of registration
string
Principal place of business
string
PIN code
string
Core business activity
array
List of business activities
array
HSN codes for goods dealt
array
SAC codes for services provided
object
Rate limit information including remaining requests
curl -X GET "https://api.finscreener.in/api/gst/details?gstin=27AAACR5055K1ZZ" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
import requests
response = requests.get(
"https://api.finscreener.in/api/gst/details",
params={"gstin": "27AAACR5055K1ZZ"},
headers={"Authorization": f"Bearer {token}"}
)
gst = response.json()
{
"data": {
"GSTIN": "27AAACR5055K1ZZ",
"LegalName": "RELIANCE INDUSTRIES LIMITED",
"TradeName": "RELIANCE INDUSTRIES LIMITED",
"Status": "Active",
"TaxpayerType": "Regular",
"ConstitutionBusiness": "Public Limited Company",
"dateOfRegistration": "2017-07-01",
"state": "Maharashtra",
"Address": "3rd Floor, Maker Chambers IV, 222 Nariman Point",
"Pincode": "400021",
"COREBUSINESS": "Manufacturer",
"BusinessActivities": ["Factory/Manufacturing", "Wholesale Business"],
"hsnCodes": ["2710", "3901", "3902"],
"sacCodes": []
},
"rate_limit": {
"remaining": 93,
"limit": 100,
"reset": "2026-03-21T00:00:00Z"
}
}