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.
| Field | Notes |
|---|---|
items REQUIRED | List of items being exported to be classified. |
item[index].item.age OPTIONAL | The age of the item, e.g., 1784-1820 or 3rd Century A.D. |
items[index].item.amount OPTIONAL | The price of the item. |
items[index].item.brand OPTIONAL | The brand of the item. |
items[index].item.category OPTIONAL | The item category. |
items[index].item.description REQUIRED | The 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 OPTIONAL | Additional features, attributes, or descriptions of the item. |
items[index].item.gender OPTIONAL | The gender reference associated to the item. |
items[index].item.hs_code OPTIONAL | As 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 OPTIONAL | The image URL. |
items[index].item.language_code OPTIONAL | The ISO 639-1 language code. If null, English is the default language. |
item[index].material OPTIONAL | The material composition of the item. |
item[index].product_id OPTIONAL | The merchant or exporter’s unique item identifier for the product. |
item[index].sub_category OPTIONAL | The category most closely associated with the item. |
ship_to_countriesOPTIONAL | The 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": null37
}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
}
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.