Dimensions & Weight

Get the Dimensions and Weight from any product.

POST https://api.transiteo.io/v3/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 : "FRA" Type : string Required : yes

JSON Response Format

{
    “result”: {
        “weight”: {
            “min”: number,
            “max”: number,
            “median”: number,
            “unit”: string
        },
        “width”: {
            “min”: number,
            “max”: number,
            “median”: number,
            “unit”: string
        },
        “height”: {
            “min”: number,
            “max”: number,
            “median”: number,
            “unit”: string
        },
        “length”: {
            “min”: number,
            “max”: number,
            “median”: number,
            “unit”: string
        }
    },
    “timestamp”: 1646674995727
}

Response fields & values

"weight" / "min"

We provide the minimum weight of the product. Example : 3.56 Type : string

"weight" / "max"

We provide the maximum weight of the product. Example : 9.22 Type : string

"weight" / "median"

We provide the median weight of the product. Example : 4.77 Type : string

"weight" / "unit"

We provide the unit of product weight. Example : kg Type : string

"width" / "min"

We provide the minimum width of the product. Example : 3.56 Type : string

"width" / "max"

We provide the maximum width of the product. Example : 9.22 Type : string

"width" / "median"

We provide the median width of the product. Example : 4.77 Type : string

"width" / "unit"

We provide the unit of product width. Example : kg Type : string

"height" / "min"

We provide the minimum height of the product. Example : 3.56 Type : string

"height" / "max"

We provide the maximum height of the product. Example : 9.22 Type : string

"height" / "median"

We provide the median height of the product. Example : 4.77 Type : string

"height" / "unit"

We provide the unit of height weight. Example : kg Type : string

"length" / "min"

We provide the minimum length of the product. Example : 3.56 Type : string

"length" / "max"

We provide the maximum length of the product. Example : 9.22 Type : string

"length" / "median"

We provide the median length of the product. Example : 4.77 Type : string

"length" / "unit"

We provide the unit of product length. Example : kg Type : string

"timestamp"

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

Last updated