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 (previous, current, or next)

current

siblings[].code

The HSN code for this sibling

01061100

siblings[].parent

The parent code that groups this HSN

0106

siblings[].meta.desc

Description of this sibling HSN

Primates

siblings[].meta.remarks

Remarks for this sibling classification

Nil-rated for primates

siblings[].meta.summary

Summary notes (may be No summary available if not provided)

No summary available