CLEARIE™ GETWAYEX-IM Intelligence & APIs
← Marketplace

Master Data · min plan: developer · standard (1u) · scope: read:master · both

HSN Exports

Returns verified export-side HSN classifications, export policy, licensing notes, UQC, applicable schemes, and provenance.

GET /v1/master/hsn/exports

Required scope

read:master

Weighted API units

1 per success

Minimum plan

developer

Rate-limit bucket

standard

AI credits

—

Parameters

NameInTypeRequiredDescription
codequerystring—Exact or prefix HSN code. Use at least four digits; unfiltered catalogue export is not supported.
qquerystring—Description search.
pagequeryinteger—One-indexed page.
page_sizequeryinteger—Rows per page, from 1 to 50.

Sample request

curl "https://getway.clearie.ai/v1/master/hsn/exports?code=8517" -H "Authorization: Bearer $CLEARIE_API_KEY"

Sample response

{
  "items": [
    {
      "code": "85171300",
      "description": "Telephones for cellular networks",
      "uqc": "NOS",
      "policy": "Free",
      "schemes": [
        "RODTEP"
      ]
    }
  ],
  "page": 1,
  "page_size": 25,
  "total": 1,
  "meta": {
    "weighted_units": 1
  }
}

Live response contract

Live calls require API-key authentication, read:master scope, plan access, and available quota. Successful calls consume 1 weighted API units; failed responses release reservations. AI credits are waived when no chargeable AI output is delivered.

Sandbox sample response

Workspace try-it calls use isolated representative sandbox records. They are for integration validation, not production filing.

Error examples

401 invalid key · 403 missing scope or plan · 429 quota/rate limit · 404 no verified data where applicable.

Response schema

root object {
items* array [
item object {
code* string// e.g. "85171300"
description* string// e.g. "Telephones for cellular networks"
uqc* string// e.g. "NOS"
policy* string// e.g. "Free"
schemes* array [
item string// e.g. "RODTEP"
]
}
]
page* integer// e.g. 1
page_size* integer// e.g. 25
total* integer// e.g. 1
meta* object {
weighted_units* integer// e.g. 1
}
}

Try this API live in the workspace

The in-app try-it console runs against the isolated deterministic sandbox repository. It never reads live customer or reference records.