Sibling Classification - By HSN
Get the hierarchical siblings of a given HSN code, including the current, previous, and next codes (if they exist).
API Endpoint
GET /hsn/{code}/siblings
Example Request
curl --location '<BASE_URL>/hsn/01061100/siblings'
Example Response
{
"data": {
"siblings": [
{
"position": "current",
"code": "01061100",
"parent": "0106",
"meta": {
"desc": "Primates",
"remarks": "Nil-rated for primates",
"summary": "No summary available"
}
},
{
"position": "next",
"code": "01061200",
"parent": "0106",
"meta": {
"desc": "Whales, dolphins, porpoises, manatees, dugongs, seals",
"remarks": "Nil-rated for marine mammals",
"summary": "No summary available"
}
}
]
}
}
Field Reference
Siblings Array
Field |
Description |
Example |
---|---|---|
siblings[].position |
Position of the sibling relative to the queried HSN code
( |
|
siblings[].code |
The HSN code for this sibling |
|
siblings[].parent |
The parent code that groups this HSN |
|
siblings[].meta.desc |
Description of this sibling HSN |
|
siblings[].meta.remarks |
Remarks for this sibling classification |
|
siblings[].meta.summary |
Summary notes (may be |
|