DOCS

Request a bulk classification

/

Yêu cầu phân loại số lượng lớn

Khám phá các cặp khóa/giá trị trong một yêu cầu phân loại số lượng lớn.

Tạo một yêu cầu mới cho việc phân loại hàng hóa số lượng lớn đến mã HS phổ quát (6 chữ số) hoặc mã HS cụ thể theo quốc gia (8+ chữ số). Giới hạn yêu cầu phân loại số lượng lớn dựa trên thời gian chờ 90 giây của AWS, điều này dẫn đến khoảng 2,000 phân loại.

Lưu ý: Để nhận được một phân loại, bạn phải cung cấp một description. Bạn có thể chọn trường nào để cung cấp, nhưng chúng tôi khuyên bạn nên cung cấp càng nhiều thông tin càng tốt để nhận được phân loại chính xác hơn.

Thuộc tính 

Các cặp khóa/giá trị JSON trong thân yêu cầu

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

Tiêu đề trên là một đầu vào bắt buộc cho yêu cầu phân loại số lượng lớn này để hoàn thành thành công.

TrườngGhi chú
items BẮT BUỘCDanh sách các mặt hàng được xuất khẩu để được phân loại.
item[index].item.age TÙY CHỌNTuổi của mặt hàng. Ví dụ: “1784-1820” hoặc “Thế kỷ 3 sau Công nguyên.”
items[index].item.amount TÙY CHỌNGiá của mặt hàng.
items[index].item.brand TÙY CHỌNThương hiệu của mặt hàng.
items[index].item.category TÙY CHỌNDanh mục mặt hàng.
items[index].item.description BẮT BUỘCMô tả hàng hóa cho hóa đơn thương mại. Mô tả này thường khác với mô tả bán lẻ và thường bao gồm một mô tả chung về nó, nó được làm từ gì và nó được sử dụng để làm gì.
items[index].item.detail TÙY CHỌNCác tính năng, thuộc tính hoặc mô tả bổ sung của mặt hàng.
items[index].item.gender TÙY CHỌNTham chiếu giới tính liên quan đến mặt hàng.
items[index].item.hs_code TÙY CHỌNNhiều chữ số của mã HS đã biết, sẽ được sử dụng cho các phân loại phụ. Ví dụ: nếu bạn đang phân loại một danh sách quần áo đan, hãy nhập “61” để buộc logic tìm mã trong chương 61.
items[index].item.image_url TÙY CHỌNURL hình ảnh.
items[index].item.language_code TÙY CHỌNMã ngôn ngữ ISO 639-1. Nếu null, tiếng Anh là ngôn ngữ mặc định.
item[index].material TÙY CHỌNThành phần vật liệu của mặt hàng.
item[index].product_id TÙY CHỌNĐịnh danh mặt hàng duy nhất của thương nhân hoặc nhà xuất khẩu cho sản phẩm.
item[index].sub_category TÙY CHỌNDanh mục gần nhất liên quan đến mặt hàng.
ship_to_countries TÙY CHỌNCác quốc gia đích, được đại diện bởi mã ISO hai chữ cái. Trường này là bắt buộc cho phân loại HTS tám chữ số+ cụ thể theo quốc gia.

Ví dụ yêu cầu

CLASSIFY YÊU CẦU

JSON

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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
  "items": [
    {
      "item": {
        "id": "29342",
        "amount": 12.99,
        "brand": null,
        "category": "women's clothing",
        "description": "Cozy Design Women's Knitted Gloves with Roll Up Cuffs for Winter",
        "detail": null,
        "gender": "women",
        "hs_code": "6116",
        "image_url": "https://zonos.com/images/cozygloves.png",
        "item_age": null,
        "language_code": "en",
        "material": "cotton",
        "product_id": "895669256385",
        "sub_category": "women's accessories"
      }
    },
    {
      "item": {
        "id": "29343",
        "amount": 19.99,
        "brand": null,
        "category": null,
        "description": "Cadet Army Cap Basic Everyday Military Style Hat",
        "detail": null,
        "gender": "men's",
        "hs_code": null,
        "image_url": "https://zonos.com/images/cadethat.png",
        "item_age": null,
        "language_code": "en",
        "material": null,
        "product_id": "895669256378",
        "sub_category": null
      }
    },
    {
      "item": {
        "id": "29344",
        "amount": 45.29,
        "brand": "Ray Ban",
        "category": "Accessories",
        "description": "Vintage Aviator Square Sunglasses",
        "detail": null,
        "gender": null,
        "hs_code": null,
        "image_url": "https://zonos.com/images/vintagesunglasses.png",
        "item_age": null,
        "language_code": "en",
        "material": null,
        "product_id": "895669256399",
        "sub_category": "Sunglasses"
      }
    }
  ],
  "ship_to_countries": ["CA", "FR"]
}

Phản hồi mẫu

CLASSIFY ĐỐI TƯỢNG

JSON

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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
  "items": [
    {
      "id": "29342",
      "ship_to_country": "CA",
      "hs_code": "6116.99.0000",
      "tariff_description": "Of other textile materials",
      "chapter": "61",
      "chapter_description": "Apparel and clothing, knitted or crocheted",
      "heading": "6116",
      "heading_description": "Gloves, mittens, and mitts, knitted or crocheted",
      "subheading": "6116.99",
      "subheading_description": "Gloves, mittens, and mitts of other textile materials",
      "combinedDescription": "Of other textile materials: of other textile materials",
      "truncatedCombinedDescription": "Of other textile materials: of other textile"
    },
    {
      "id": "29342",
      "ship_to_country": "FR",
      "hs_code": "6116.99.0000",
      "tariff_description": "Of other textile materials",
      "chapter": "61",
      "chapter_description": "Apparel and clothing, knitted or crocheted",
      "heading": "6116",
      "heading_description": "Gloves, mittens, and mitts, knitted or crocheted",
      "subheading": "6116.99",
      "subheading_description": "Gloves, mittens, and mitts of other textile materials",
      "combinedDescription": "Of other textile materials: of other textile materials",
      "truncatedCombinedDescription": "Of other textile materials: of other textile"
    },
    {
      "id": "29343",
      "ship_to_country": "CA",
      "hs_code": "6505.00.4000",
      "tariff_description": "Other hats, hoods, caps, bonnets or berets",
      "chapter": "65",
      "chapter_description": "Hats and headgear",
      "heading": "6505",
      "heading_description": "Hats and other headgear of textile materials; visors, hairnets, etc.",
      "subheading": "6505.00",
      "subheading_description": "knitted hats and visors",
      "combinedDescription": "Other hats, hoods, caps, bonnets or berets",
      "truncatedCombinedDescription": "Other hats, hoods, caps, bonnets or berets"
    },
    {
      "id": "29343",
      "ship_to_country": "FR",
      "hs_code": "6505.00.3000",
      "tariff_description": "Peaked caps",
      "chapter": "65",
      "chapter_description": "Hats and headgear",
      "heading": "6505",
      "heading_description": "Hats and other headgear of textile materials; visors, hairnets, etc.",
      "subheading": "6505.00",
      "subheading_description": "knitted hats and visors",
      "combinedDescription": "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: Peaked caps",
      "truncatedCombinedDescription": "Hats and other headgear, knitted or crocheted"
    },
    {
      "id": "29344",
      "ship_to_country": "CA",
      "hs_code": "9004.10.0000",
      "tariff_description": "Sunglasses",
      "chapter": "90",
      "chapter_description": "Optic fiber cables, optical lenses, glasses, binoculars, cameras and projectors, medical appliances, and other measuring instruments",
      "heading": "9004",
      "heading_description": "Eyewear",
      "subheading": "9004.10",
      "subheading_description": "Sunglasses",
      "combinedDescription": "Spectacles, goggles and the like, corrective, protective or other: sunglasses: Sunglasses",
      "truncatedCombinedDescription": "Spectacles, goggles and the like, corrective,"
    },
    {
      "id": "29344",
      "ship_to_country": "FR",
      "hs_code": "9004.10.9900",
      "tariff_description": "Other: other",
      "chapter": "90",
      "chapter_description": "Optic fiber cables, optical lenses, glasses, binoculars, cameras and projectors, medical appliances, and other measuring instruments",
      "heading": "9004",
      "heading_description": "Eyewear",
      "subheading": "9004.10",
      "subheading_description": "Sunglasses",
      "combinedDescription": "Spectacles, goggles and the like, corrective, protective or other: sunglasses",
      "truncatedCombinedDescription": "Spectacles, goggles and the like, corrective,"
    }
  ]
}

Trang này có hữu ích không?