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: `` Path Parameters --------------- - ``code`` (string, required): Exact SAC code (e.g., ``997326``) Curl Example ------------ .. code-block:: bash curl --location 'https://api.taxlookup.fastgst.in/search/sac/997326/taxes' \ --header 'X-API-Key: ****' Successful Response ------------------- .. code-block:: json { "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_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 :doc:`../conventions` for common errors and shapes.