Get HSN Details
Sandbox API to provide information for goods against the provided HSN code
Overview
This API takes in the gstin of the Requester(Taxpayer or Transporter) and hsncode and gives the HSN details.
Endpoint
HTTP Method | Resource |
---|---|
Get | /ewb/hsn?hsn-code={hsn-code} |
Request
Follow the below guidelines to pass GSTIN in path parameters to call the API.
Headers
Param | Type | Description | Example |
---|---|---|---|
x-api-key | string | An API key is a public key to identify users when calling any Sandbox API. | key_live_ZUQT5UEf4...... |
Authorization | string | JWT Authorization token which is generated using E-Way Bill Authentication API. | eyJhsebihGyUf...... |
Query Parameters
Param | Type | Description | Example |
---|---|---|---|
gstin | string | 15-character alpha-numeric unique identifier assigned to business entities registering under the GST regime | AAAAA0000A |
hsn-code | string | hsncode for which the details are required | 1001 |
Once the values are added, Your curl will look something like this
curl --request GET \
--url 'https://api.sandbox.co.in/ewb/hsn?hsn-code=1001' \
--header 'Authorization: xxxxxxxxxx' \
--header 'accept: application/json' \
--header 'x-api-key: xxxxxxxxxx' \
--header 'x-api-version: 1.0'
Response
Param | Type | Description | Examples |
---|---|---|---|
hsnCode | num | HSN code - HSN stands for Harmonized System of Nomenclature | 1001 |
hsnDesc | string | It's a description of commodity of particular hsnCode. | WHEAT AND MESLIN - Durum wheat |
Response Caching
Response caching is not available for this API. Learn more about our response caching mechanism here
Wallet Charges
Since Generate E-Way Bill is a Paid API, a wallet charge of INR 0.25 + GST will take place.
Versioning
This API is currently in major version 1.0. Refer to our versioning policies here
Updated about 1 month ago