v1

latestOpenAPI 3.0.12026-07-242073551.1 MB
Hurricane Services

Commodity Codes Validation

Validate the Harmonized System (HS) codes for items being shipped. <br /> This API helps ensure that the HS codes provided for items accurately correspond to the descriptions and comply with customs requirements, providing improved quality of customs data provided for international shipments.

post/v4/GetCommodityCodeValidations

Request body

ShippingAccountIdstring nullable

A unique identifier for the shipping account, which can either be generated by the system or provided by you (alias) during shipping account creation. <br />This ID helps associate the request with a specific shipping account.

Example request

{
  "ShippingAccountId": "453",
  "Shipment": {
    "Reference": "ABC1234",
    "ShipperCountryCode": "GB",
    "DestinationCountryCode": "US"
  },
  "Items": [
    {
      "SkuCode": "SKU123",
      "HSCode": "6109100000000",
      "Description": "Men's shoes"
    }
  ]
}

Response

Returns commodity code validation response.

ShippingAccountIdstring nullable

The unique identifier for the shipping account used in the request, returned for confirmation of the matched account. <br /> <br /><b>Note:</b> If an empty value was sent in the request, then this field will return as blank.

GeneratedDatestring nullable

A timestamp in Coordinated Universal Time (UTC) returned by Hurricane, indicating when the call was performed, aiding in tracking and logging activities.

Example response

{
  "ShippingAccountId": "453",
  "Shipment": {
    "Reference": "ABC1234"
  },
  "Items": [
    {
      "HSCode": "340120",
      "HS6Code": "340120",
      "Description": "BABY TALCUM POWDER",
      "10DigitExportCode": "3304910000",
      "10DigitImportCode": "3304910010",
      "SuitableDescription": "Powders,whether or not compressed",
      "ErrorDescription": "Invalid HS6 code",
      "OriginalImportCode": "61091090001",
      "OriginalExportCode": "61091090001"
    }
  ],
  "GeneratedDate": "2020-03-14T10:27:01"
}