GST Filings and Details - Real Time API
What it does: Returns a quick summary of the vendor's GST registration — active status, legal name, trade name, entity type, and registration date. Use this for an immediate pass/fail signal during onboarding.
Endpoint
POST https://micro.signalx.ai/micro-check-api/microchecks/v2/gst/normal
Content-Type: application/json
Authorization: Bearer <JWT_TOKEN>
cURL Example
Using PAN:
curl --location 'https://micro.signalx.ai/micro-check-api/microchecks/v2/gst/normal' \
--header 'Authorization: Bearer <JWT_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{"pan": "ABACS6684C"}'
Using GSTIN:
curl --location 'https://micro.signalx.ai/micro-check-api/microchecks/v2/gst/normal' \
--header 'Authorization: Bearer <JWT_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{"gstin": "27ABACS6684C1ZY"}'
Sample Response
{
"status_code": 200,
"data": {
"gstin": "27ABACS6684C1ZY",
"legal_name_of_business": "SAMPLE VENDOR PRIVATE LIMITED",
"trade_name": "Sample Vendor",
"effective_date_of_registration": "2018-07-01",
"constitution_of_business": "Private Limited",
"gstin_uin_status": "Active",
"whether_aadhaar_authenticated": true,
"whether_e_kyc_verified": true,
"goods": [
{ "hsn": 30049099, "description": "PHARMACEUTICAL PRODUCTS" }
]
},
"message": "GST overview data retrieved successfully"
}