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: GET

  • Path: /search/sac/{code}/taxes

  • Auth: 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": 18,
              "conditions": "Conditions Not Applicable",
              "gst_breakdown": {
                      "cgst": 9,
                      "sgst": 9,
                      "igst": 18
              },
              "is_exempted": false,
              "exemption_status": "Taxable",
              "broad_categeory": "v1.0",
              "last_updated": "01/07/2017",
              "source": "11/2017-Central Tax (Rate)"
      },
      "meta": {
              "api_version": "v1",
              "timestamp": "2025-12-01",
              "request_id": "req_0HNHH2HQ2I0G4:00000002"
      }
}

Notes

  • Returns clear gst_breakdown for CGST/SGST/IGST and AI-digested conditions

  • Includes is_exempted, exemption_status, broad category, last_updated and source

  • AI 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.