GET /search/sac/{code}/taxes
Retrieve GST tax rates for a SAC code, including CGST/SGST/IGST breakdown and human-readable conditions where applicable.
Request
Method:
GETPath:
/search/sac/{code}/taxesAuth:
X-API-Key: <your_key>
Path Parameters
code(string, required): Exact SAC code (e.g.,997326)
Curl Example
curl --location 'https://api.taxlookup.fastgst.in/search/sac/997326/taxes' \
--header 'X-API-Key: ****'
Successful Response
{
"success": true,
"data": {
"gst_rate": 40.00,
"conditions": "Tax rate matches the applicable rate on similar goods sale with title transfer; applicable to temporary or permanent transfer of intellectual property rights.",
"gst_breakdown": { "cgst": 20.00, "sgst": 20.00, "igst": 40.00 },
"is_exempted": false,
"exemption_status": "Taxable",
"broad_categeory": "Section 7: Financial and related services; real estate services; and rental and leasing services",
"last_updated": "2025-10-12",
"source": "gstin.gov.in"
},
"meta": { "api_version": "v1", "timestamp": "2025-10-12", "request_id": "req_0HNG9G0COVSMG:00000004" }
}
Notes
Returns clear
gst_breakdownfor CGST/SGST/IGST and AI-digestedconditionsIncludes
is_exempted,exemption_status, broad category,last_updatedandsourceAI is used to digest complex conditions into an accessible summary; consult official notifications for legal reliance
Errors
See API Conventions for common errors and shapes.