GET /search/sac/{code} ====================== Retrieve basic information and hierarchy details for an exact SAC code. Request ------- - Method: ``GET`` - Path: ``/search/sac/{code}`` - 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' \ --header 'X-API-Key: ******' Successful Response ------------------- .. code-block:: json { "success": true, "data": { "sac_code": "997326", "description": "Leasing or Rental Services Concerning Textiles Clothing and Footwear", "hierarchy": { "section": {"level": "Section", "description": "All Services"}, "heading": {"level": "Heading", "description": "Leasing or Rental Services Without Operator"}, "group": null, "sub_group": {"level": "Sub-Group", "description": "Leasing or Rental Services Concerning Textiles Clothing and Footwear"} } }, "meta": {"api_version": "v1", "timestamp": "2025-10-12", "request_id": "req_0HNG9G0COVSMG:00000003"} } Notes ----- - Use :doc:`sac_search` to discover codes, then call this endpoint for authoritative descriptions and hierarchy. Errors ------ See :doc:`../conventions` for common errors and shapes.