Zonos logo
DOCS

Classify object

/

Classify object

Classify API 

The Classify object will return the chapter, heading, subheading, tariff country-specific HTS code, and descriptions in the codes array.

Learn more about Zonos Classify.

CLASSIFY OBJECT

id INTEGERThe unique identifier for the object. The id for the Classify object will always be prefixed with clfy.
classified_code STRINGThe classified code.
codes HASHA hash containing a list of information on the classified_code.See child attributes below.
codes.code STRINGThe code for the chapter (2 digits), heading (4 digits), subheading (6 digits), or tariff code (8+ digits).
codes.description STRINGThe Harmonized Tariff Schedule description for the chapter, heading, subheading, or tariff code.
codes.type STRINGThe type of code.Possible values include chapter, heading, subheading, and tariff.
combined_description STRINGThe combination of hs code descriptions derived from the code schedule hierararchy.
product_id INTEGERThe unique identifier for the product.
truncated_combined_description STRINGThe combination of hs code descriptions derived from the code schedule hierararchy cut off at 50 characters for use on commercial invoice.

Classify object

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "id": "clfy_8C49fk2945jmm232CcQtHtXdu",
  "classified_code": "6506.00",
  "codes": [
    {
      "code": "65",
      "description": "hats and headgear",
      "type": "chapter"
    },
    {
      "code": "6505",
      "description": "hats and other headgear",
      "type": "heading"
    },
    {
      "code": "6505.00",
      "description": "hats and other headgear, knitted or crocheted",
      "type": "subheading"
    }
  ],
  "combined_description": "Hats and other headgear, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed; hair-nets of any material, whether or not lined or trimmed.",
  "product_id": "895669256385",
  "truncated_combined_description": "Hats and other headgear, knitted or crocheted"
}