HSN Code Lookup Code Examples

Business
POST /api/v1/gst/hsn-code Bearer

Ready-to-run HSN Code Lookup calls. Replace YOUR_API_KEY with the key from your dashboard.

HSN Code Lookup — Code Samples

cURL
PHP
Fetch
jQuery
Axios
Python
curl -X POST https://app.way2api.com/api/v1/gst/hsn-code \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"hsn_code":"998319"}'

Expected Response — 200

{
    "status": "SUCCESS",
    "status_code": 200,
    "charged": true,
    "success": true,
    "message": "",
    "message_code": "OK",
    "order_id": "W2A1739512345abcdef01",
    "data": {
        "order_id": "W2A1739512345abcdef01",
        "result": {
            "hsn_code": "998319",
            "code_type": "SAC",
            "description": "OTHER INFORMATION TECHNOLOGY SERVICES N.E.C",
            "chapter_number": 99,
            "chapter_name": "Services",
            "gst_rate": "5/12/18",
            "gst_rate_percent": [
                5,
                12,
                18
            ],
            "rate_revision": "12% 5% 18%",
            "effective_date": "2019-10-01",
            "effective_dates": [
                "2019-10-01",
                "2017-07-01"
            ],
            "cess": "Nil Provided that Director (Sports), Ministry of Youth Affairs and Sports certifies that the services are directly or indirectly related to any of the events under FIFA U-17 Women's World Cup 2020."
        }
    }
}