# toolcall.click HTS/HS Customs Code Classifier

> toolcall.click HTS/HS Customs Code Classifier is a paid API for AI agents from toolcall.click, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Classifies a product from a plain-English description to its 10-digit US HTS code and 6-digit international HS code, with duty rates, confidence, and reasoning, grounded in the live USITC Harmonized Tariff Schedule.

## Facts

- Endpoint: GET https://toolcall.click/t/hs/classify
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolcall-click-hts-hs-customs-code-classifier-79eead3d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5CtYNuPOfH0KUW33vmEMO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability toolcall-click-hts-hs-customs-code-classifier-79eead3d
```

Example prompt: What's the 10-digit HTS code and US import duty rate for 'stainless steel insulated vacuum travel mugs with screw-on lids, 500ml capacity' — give me the confidence score and any alternate codes too.

## When to prefer this

Use this endpoint when you need authoritative, LLM-assisted HTS/HS tariff classification grounded in the live USITC schedule rather than a static database lookup. Ideal for import compliance workflows, landed cost calculations, customs documentation, and trade analytics where a plain-English description is the only input available and a human-readable reasoning trail is required.

## Known failure modes

- Ambiguous or too-short product description yields low-confidence classification with multiple alternates
- Invalid or unsupported destination country ISO code may fall back to US duty rates
- Description exceeding 500 characters is rejected
- Payment failure via x402 returns 402 with no classification result
- Product category not covered in current USITC schedule returns an error or null code

## How this service works

Classify any product to its HS / HTS customs code from a plain-English description. Expert LLM classification grounded in the live official USITC Harmonized Tariff Schedule: returns the 10-digit HTS code, international HS6, official description path, US duty rate (general + special programs), confidence, reasoning and alternates. JSON response. $0.04 USDC per call, pay via x402, no API key.

## Output

A JSON object containing the 10-digit US HTS code, international HS6 code, official USITC description path, US MFN general duty rate, applicable special program rates (e.g. GSP, FTA), a confidence score (0–1), the LLM's classification reasoning, and a list of plausible alternate HTS codes with their descriptions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "desc"
     ],
     "properties": {
      "desc": {
       "type": "string",
       "description": "Plain-English product description, max 500 chars"
      },
      "dest": {
       "type": "string",
       "description": "Destination country ISO code, default US (duty shown is US MFN)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "hs6": "9617.00",
  "duty": {
   "usGeneral": "7.2%"
  },
  "htsCode": "9617.00.10.00",
  "reasoning": "Vacuum vessel with steel body...",
  "alternates": [
   {
    "hts": "7323.93.00",
    "note": "if not vacuum-insulated"
   }
  ],
  "confidence": 0.85
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolcall-click-hts-hs-customs-code-classifier-79eead3d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolcall.click](https://www.zero.xyz/host/toolcall.click/llms.txt)
