Skip to main content
GET
/
api
/
reference
/
hsn-codes
# Search by code
curl -X GET "https://api.finscreener.in/api/reference/hsn-codes?code=8517" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Search by description
curl -X GET "https://api.finscreener.in/api/reference/hsn-codes?description=telephone" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "codes": [
    {
      "code": "8517",
      "description": "Telephone sets, including telephones for cellular networks or for other wireless networks",
      "chapter": 85,
      "section": "XVI"
    },
    {
      "code": "851712",
      "description": "Telephones for cellular networks or for other wireless networks",
      "chapter": 85,
      "section": "XVI"
    }
  ]
}
Search and lookup HSN (Harmonized System of Nomenclature) codes for goods classification.

Headers

Authorization
string
required
Bearer token: Bearer <access_token>

Query Parameters

code
string
Search by HSN code (partial match)
description
string
Search by description keyword
chapter
string
Filter by chapter (01-99)
# Search by code
curl -X GET "https://api.finscreener.in/api/reference/hsn-codes?code=8517" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

# Search by description
curl -X GET "https://api.finscreener.in/api/reference/hsn-codes?description=telephone" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "codes": [
    {
      "code": "8517",
      "description": "Telephone sets, including telephones for cellular networks or for other wireless networks",
      "chapter": 85,
      "section": "XVI"
    },
    {
      "code": "851712",
      "description": "Telephones for cellular networks or for other wireless networks",
      "chapter": 85,
      "section": "XVI"
    }
  ]
}