Zonos logo
DOCS

Zonos categories

/

Power your classifications with the Zonos Category API

See how the Zonos Category API enhances classification results.

Power your requests with Zonos categories 

The Zonos Category API powers Classify by allowing users to select preset categories and subcategories to strengthen their Classify requests. The categories in this API are tied to corresponding HS codes, guiding Classify in selecting an HS code within the category and subcategory.

If you have difficulty providing rich product detail fields to generate classifications, these preset categories can be a powerful tool to enhance your classification results.

E.g., if a user’s input for a gardening pruner is something vague like tool, Classify will resolve to a construction tool classification. But if the user enriches their request with categories like Home & Garden and Other Outdoor & Garden Items, it will result in a more accurate classification within those categories.


Retrieve a list of Zonos categories 

If you are utilizing Zonos' preset list of categories to power your classifications, use the endpoint below to retrieve a complete list of Zonos categories and subcategories. Once you retrieve the list, you can use the provided categories and subcategories to power your classification requests via Classify’s category and subcategory input fields.

GET https://api.zonos.com/v1/classify/zonosCategories

Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  "categories": [
    {
      "name": "Appliances, Parts & Accessories",
      "subCategories": [
        {
          "name": "Air Compressors"
        },
        {
          "name": "Bathroom Appliances"
        },
        {
          "name": "Clothing Iron"
        }
      ]
    },
    {
      "name": "Arts & Collectibles",
      "subCategories": [
        {
          "name": "Antique Hand-Painted & Hand-Drawn Art"
        },
        {
          "name": "Antiques Over 100 Years Old"
        },
        {
          "name": "Clothing Iron"
        }
      ]
    },
    {
      "name": "Automotive & Vehicles",
      "subCategories": [
        {
          "name": "Aircraft & Parts"
        },
        {
          "name": "Bicycles & Accessories"
        },
        {
          "name": "Car, Truck & Tractor Parts"
        }
      ]
    }
  ]
}