curl --request POST \
--url https://api.sandbox.co.in/gst/compliance/e-way-bill/tax-payer/gstin/search \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"gstin": "29AAACQ3770E000"
}
'{
"code": 200,
"data": {
"data": {
"address1": "",
"address2": "560009",
"blkStatus": "",
"gstin": "29AAACQ3770E000",
"legalName": "Acme Industries Private Limited",
"pinCode": "560009",
"stateCode": "27",
"status": "ACT",
"tradeName": "",
"txpType": "REG"
},
"status": "1"
},
"timestamp": 1763446641000,
"transaction_id": "c882b9b8-08c4-4bb7-b0aa-9f61ef6c4d21"
}Get taxpayer and transporter details by passing the GSTIN. The data is fetched from the IRP database and not GST Network database.
curl --request POST \
--url https://api.sandbox.co.in/gst/compliance/e-way-bill/tax-payer/gstin/search \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"gstin": "29AAACQ3770E000"
}
'{
"code": 200,
"data": {
"data": {
"address1": "",
"address2": "560009",
"blkStatus": "",
"gstin": "29AAACQ3770E000",
"legalName": "Acme Industries Private Limited",
"pinCode": "560009",
"stateCode": "27",
"status": "ACT",
"tradeName": "",
"txpType": "REG"
},
"status": "1"
},
"timestamp": 1763446641000,
"transaction_id": "c882b9b8-08c4-4bb7-b0aa-9f61ef6c4d21"
}E-Way Bill access token
API version
API key for identification
GSTIN of the taxpayer
Was this page helpful?