HS Code > HS Code

This endpoint allows you to transform the Harmonized System Code (HTSCode between 8 & 13 digits) to another one. It manage HSCode of 198 Countries.

HSCode to get the HSCode

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

You can transform any HTS Code of any country to another one.

Headers

NameTypeDescription

Content-type

string

application/json

Authorization

string

"your id_token"

{    "name":{
    "result": {
        "hs_code": number,
        "hs_version": string,
        "designation": string,
        "product_statut": string
    }
}
{
  "product": {
    "identification": {
      "value": string,
      "type": string
    }
  },
  "from_country" string,
  "to_country": string
}

Request fields

"products" / "identification" / "type"

You need to fill with "HSCODE" Type : string Required : yes

"products" / "identification" / "value"

You need to fill this field with a HSCode 8 to 13 digits. Examples : 9503006100 Type : string Required : yes

"from_country"

You need to fill this field with the ISO Alpha 2 or 3 Code of the country. Download the list of countries. Examples : "USA" Type : string Required : yes

"to_country"

You need to fill this field with the ISO Alpha 2 or 3 Code of the country. Download the list of countries. Examples : "USA" Type : string Required : yes

JSON Response Format

{
    "result": {
        "hs_code": string,
        "hs_version": string,
        "product_statut": string,
        "designation": string,
        "splitted_designation": {
            "chapter_designation": string,
            "heading_designation": string,
            "subheading_designation": string,
            "national_designation": string
        }
    },
    "timestamp": number
}

Response fields & values

"hs_code"

We provide a HSCode of length between 8 and 13. It depends on the "to_country" field and product attributes. Example : "9503006100" Type : string

"hs_version"

Each country uses a specific HSCode version. Examples : "HS17" or "HS12" Type : string

"designation"

We provide the HSCode designation. Example : "Electrical machinery and equipment and parts thereof; sound recorders and reproducers, television image and sound recorders and reproducers, and parts and accessories of such articles -- heading_designation : Vacuum cleaners. -- subheading_designation : Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor ( excl. of a power <= 1?500?w and having a dust bag or other receptacle capacity <= 20?l) -- national_designation : Aspirateurs: a moteur électrique incorporé: autres: aspirateurs de poussièers, y compris les aspirateurs de matières sèches et de matières liquides" Type : string

"product_statut"

We provide the product statut in the destination country. There are 3 cases. Example : "'Authorized' à l'importation dans ce pays" or "'Restricted' à l'importation dans ce pays" or "'Prohibited' à l'importation dans ce pays" Type : string

"splitted_designation" / "chapter_designation"

We provide the HSCode chapter designation. Example : "Electrical machinery and equipment and parts thereof; sound recorders and reproducers, television image and sound recorders and reproducers, and parts and accessories of such articles", "heading_designation": "Vacuum cleaners." Type : string

"splitted_designation" / "heading_designation"

We provide the HSCode heading designation. Example : "Vacuum cleaners." Type : string

"splitted_designation" / "subheading_designation"

We provide the HSCode subheading designation. Example : "Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor ( excl. of a power <= 1?500?w and having a dust bag or other receptacle capacity <= 20?l)" Type : string

"splitted_designation" / "national_designation"

We provide the HSCode nation designation. Example : "Aspirateurs: a moteur électrique incorporé: autres: aspirateurs de poussièers, y compris les aspirateurs de matières sèches et de matières liquides" Type : string

"timestamp"

We provide the result timestamp. Example : "1638441460961" Type : string

Last updated