If you have access to Zonos Dashboard, you can test Classify with 1,000 free classifications using as little as a product description. If you don’t have access to Dashboard or if you’ve already used your free classifications and would like to upgrade, contact Zonos.
Simply log in to Zonos Dashboard and click on Classify on the left sidebar menu. From there, you can begin classifying using the Zonos single classifiation tool or you can classify your products in bulk via CSV using bulk Classify. Classify will return an HS code with just an item description. However, the more product details you provide, the more accurate your result will be. Learn about best practices for Classify input fields.
To request a universal (6-digit) code, simply leave the ship-to country null
in the Classify request. A six-digit classification is universal for all WCO member countries.
To request a country-specific (8+ digit code), simply add the ship-to country in the Classify request. The benefits of classifying to country-specific code include improved restricted item management, reduced tax rates, preferential duty rates, and smoother customs clearance.
Request
{
"item": {
"id": "29342",
"brand": null,
"category": null,
"country_of_origin": "CN",
"description": "Cozy Design Women's Knitted Gloves with Roll Up Cuffs for Winter",
"detail": null,
"hs_code": "6116",
"image_url": "https://zonos.com/images/cozygloves.png",
"language_code": "en",
"product_id": "895669256385",
"subcategory": null
},
"ship_to_country": null
}
The Classify object will return the subheading
six-digit result in the codes array. The chapter
and heading
information are also returned.
Response
{
"id": "clfy_O4WPIPnJqxeuEEX6Kyz18",
"product_id": "895669256385",
"hs_code": "6116.99",
"classified_code": "6116.99",
"codes": [
{
"code": "6116.99",
"description": "Other: Of other textile materials",
"type": "subHeading"
},
{
"code": "6116",
"description": "Gloves, mittens, and mitts, knitted or crocheted",
"type": "heading"
},
{
"code": "61",
"description": "Apparel and clothing, knitted or crocheted",
"type": "chapter"
}
],
"providedHsCodeStatus": "VALID",
"combinedDescription": "Gloves, mittens and mitts, knitted or crocheted: of other textile materials",
"truncatedCombinedDescription": "Gloves, mittens and mitts, knitted or crocheted"
}
Request
{
"item": {
"id": "29342",
"brand": null,
"category": null,
"color": null,
"country_of_origin": "CN",
"description": "BAUER SUPREME HP HOCKEY GLOVES",
"detail": null,
"hs_code": "6116",
"image_url": "https://zonos.com/images/hockey-gloves.png",
"language_code": "en"
},
"ship_to_country": "CA"
}
The Classify object will return the subheading
universal result in the codes array. The chapter
and heading
information are also returned along with the country-specific code.
Response
{
"id": "clfy_2CiDWPNXSoJVH6Qu17pKId",
"hs_code": "6116.99.0000",
"classified_code": "6116.99.0000",
"codes": [
{
"code": "6116.99.0000",
"description": "Of other textile materials",
"type": "tariff"
},
{
"code": "6116.99",
"description": "Gloves, mittens, and mitts of other textile materials",
"type": "subHeading"
},
{
"code": "6116",
"description": "Gloves, mittens, and mitts, knitted or crocheted",
"type": "heading"
},
{
"code": "61",
"description": "Apparel and clothing, knitted or crocheted",
"type": "chapter"
}
],
"providedHsCodeStatus": "VALID",
"ship_to_country": "CA",
"combinedDescription": "Of other textile materials: of other textile materials",
"truncatedCombinedDescription": "Of other textile materials: of other textile"
}
You can easily monitor your monthly and annual Classify API usage in Dashboard on the Classify page by following these steps.
Learn more about checking your Zonos API call volume.
Classify
Learn how to request a universal or country-specific classification in Dashboard.
If you're interested in accessing Classify via API, learn about the Zonos Classify API.