HSN Code Lookup Request
BusinessHow to call HSN Code Lookup — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/gst/hsn-code
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| hsn_code | string | Required | HSN code for goods (2, 4, 6 or 8 digits) or SAC code for services (6 digits, beginning 99). Digits only. |
Request Body
{
"hsn_code": "998319"
}
cURL
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"}'
🚀 Send Request