HTS Code

Get Harmonized System Codes informations

POST https://api.transiteo.io/v1/taxsrv/harmonizedSystemCodes

Headers

NameTypeDescription

Authorization*

String

id token

Content-Type*

String

application/json

{
    "hscode_request": "6505009090",
    "to_country": "FRA",
    "version": "HS17",
    "hscode": {
        "chapter": "65",
        "heading": "05",
        "hscode_designation": "COIFFURES ET PARTIES DE COIFFURES - Chapeaux et autres coiffures en bonneterie ou confectionnés à l'aide de dentelles, de feutre ou d'autres produits textiles, en pièces (mais non en bandes), même garnis; résilles et filets à cheveux en toutes matières, même garnis - autres, autres - autres",
        "subdivision": "9090",
        "subheading": "00"
    }
}

JSON REQUEST EXEMPLE

{
  "hscode": "6505009090",
  "to_country": "FRA", // ISO2 or ISO3 country
  "lang": "fr"
}

Verify Harmonized System Codes

Check if the hscode is a right hscode for the origin_country

POST https://api.transiteo.io/v1/taxsrv/verifyhscode

Headers

NameTypeDescription

Authorization*

String

id token

Content-Type*

String

application/json

{
    "isRightHscode": false
}

JSON REQUEST EXEMPLE

{
  "origin_country": "FRA",
  "hscode": "6505009090"
}

Last updated