United Nations Code

Get the UN Code (Hazardous Material Code) from a product title, description, SKU or Barcode.

POST https://api.transiteo.io/v2/taxsrv/aiclassify

JSON Request Format

{
  "product": {
    "identification": {
      "value": string,
      "type": string
    }
  },
  "to_country": string
}

Request fields

"products" / "identification" / "value"

You need to fill this field with a product's title, description, sku or barcode. We manage 5 languages (English, French, Spanish, Italian & Deutsch) Examples : TEXT : "Ballon de football" or "0711719407577" or SKU : "JHYU8_^ù/76YH" Type : string Required : yes

"products" / "identification" / "type"

You need to fill with "TEXT", "BARCODE" or "SKU" 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 : "CHE" Type : string Required : yes

JSON Response Format

{
    “result”: {
        “un_code”: [
            string
        ]
    },
    “timestamp”: 1646674954208
}

Response fields & values

"un_code"

We provide the UN Code(s) attached to your product. Examples : "3481" Type : string

"timestamp"

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

Last updated