GET
/
customs-duty
/
{hts_chapter_code}
curl --request GET \
  --url https://base_url/api/v1/customs-duty/{hts_chapter_code} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "codes": [
      {
        "id": "72",
        "code": "0102",
        "description": "Live bovine animals:",
        "subsections": [
          {}
        ],
        "rate_of_duty": "1¢/kg"
      }
    ]
  },
  "message": "Successfully fetched HTS customs duty details."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

hts_chapter_code
string
required

The two character HTS chapter code to fetch the customs code details. Eg: 84.

Response

200
application/json
List of HTS codes matches the requested chapter
data
object
message
string
Example:

"Successfully fetched HTS customs duty details."