DOCS

Request a bulk classification

Request a bulk classification

Explore the key/value pairs in a bulk classification request.

Create a new request for a bulk item classification to the universal (6-digit) or country-specific (8+ digit) HS codes. The bulk classification request limit is based on the AWS 90-second timeout, which ends up being about 2,000 classifications.

Note: To obtain a classification, you must provide a description. It's up to you which field(s) you choose to provide, but we recommend you provide as much information as possible to receive a more accurate classification.

Attributes 

JSON key/value pairs in the request body

POST | https://api.zonos.com/v1/classify/bulk

The header above is a required input for this bulk classification request to complete successfully.

FieldNotes
items REQUIREDList of items being exported to be classified.
item[index].item.age OPTIONALThe age of the item, e.g., 1784-1820 or 3rd Century A.D.
items[index].item.amount OPTIONALThe price of the item.
items[index].item.brand OPTIONALThe brand of the item.
items[index].item.category OPTIONALThe item category.
items[index].item.description REQUIREDThe description of goods for the commercial invoice. This description will usually differ from the retail description and typically includes a general description of what it is, what it is made from, and what is used for.
items[index].item.detail OPTIONALAdditional features, attributes, or descriptions of the item.
items[index].item.gender OPTIONALThe gender reference associated to the item.
items[index].item.hs_code OPTIONALAs many known digits of the HS code, which will be used for sub-classifications, e.g. If you are classifying a list of knitted clothing, input 61 to force the logic to find codes within chapter 61.
items[index].item.image_url OPTIONALThe image URL.
items[index].item.language_code OPTIONALThe ISO 639-1 language code. If null, English is the default language.
item[index].material OPTIONALThe material composition of the item.
item[index].product_id OPTIONALThe merchant or exporter’s unique item identifier for the product.
item[index].sub_category OPTIONALThe category most closely associated with the item.
ship_to_countriesOPTIONALThe destination countries, represented by a two-letter ISO code. This field is required for a country-specific HTS eight-digit+ classification.

Example request

1{
2 "items": [
3 {
4 "item": {
5 "id": "29342",
6 "amount": 12.99,
7 "brand": null,
8 "category": "women's clothing",
9 "description": "Cozy Design Women's Knitted Gloves with Roll Up Cuffs for Winter",
10 "detail": null,
11 "gender": "women",
12 "hs_code": "6116",
13 "image_url": "https://zonos.com/images/cozygloves.webp",
14 "item_age": null,
15 "language_code": "en",
16 "material": "cotton",
17 "product_id": "895669256385",
18 "sub_category": "women's accessories"
19 }
20 },
21 {
22 "item": {
23 "id": "29343",
24 "amount": 19.99,
25 "brand": null,
26 "category": null,
27 "description": "Cadet Army Cap Basic Everyday Military Style Hat",
28 "detail": null,
29 "gender": "men's",
30 "hs_code": null,
31 "image_url": "https://zonos.com/images/cadethat.webp",
32 "item_age": null,
33 "language_code": "en",
34 "material": null,
35 "product_id": "895669256378",
36 "sub_category": null
37 }
38 },
39 {
40 "item": {
41 "id": "29344",
42 "amount": 45.29,
43 "brand": "Ray Ban",
44 "category": "Accessories",
45 "description": "Vintage Aviator Square Sunglasses",
46 "detail": null,
47 "gender": null,
48 "hs_code": null,
49 "image_url": "https://zonos.com/images/vintagesunglasses.webp",
50 "item_age": null,
51 "language_code": "en",
52 "material": null,
53 "product_id": "895669256399",
54 "sub_category": "Sunglasses"
55 }
56 }
57 ],
58 "ship_to_countries": [
59 "CA",
60 "FR"
61 ]
62}

Was this page helpful?