Verify GST using PAN
Use this sync API to get the GST details of an entity using it's PAN.
API URL: https://api.bulkpe.in/client/verifyGstFromPan
Method: POST
Auth: Please refer to the Authorization page.
{
"pan": "ASKBB2750Q", //Pan of Company or Individual who holds GST
"reference": "Test0001" //should be unique value
}
{
"status": true,
"statusCode": 200,
"data": {
"pan_number": "ASKBB2750Q",
"gstin_list": [
{
"gstin": "33ASKBB2750Q1ZB",
"state": "Tamil Nadu",
"state_code": "33",
"active_status": "Active"
}
]
},
"message": "verified"
}
{
"status": false,
"statusCode": 400,
"data": {},
"message": "No gstin found."
}