AI Customs Co-Pilot

The API for
Modern Customs.

Classify invoices, calculate duties, generate ACE-ready CATAIR filings.Three lines of code. One API call.

AI-Powered HTS Classification

Describe a product. Our agent classifies the HTS code, calculates the duty, and provides legal justification.

Live index covers all HTS chapters

Invoice Data

Paste product description below

Examples:

ClearanceAI Agent

HTS Classification & Duty Calculation

Ready to classify

Automated Entry Summary Filing

We don't just classify. We generate the ACE Entry Summary (AE) byte-stream that files directly into US Customs.

  • Entry Summary Create (AE) transaction
  • 10/11/20/50/80/90 record layout per ACE spec
  • No middleware — direct ACE filing
  • Duty, MPF, & HMF auto-calculated
AI Classified Data
Waiting for classification...
Entry Summary (AE) — CATAIR
Awaiting Byte Conversion
Full Shipment Classification

High-Volume Shipment Processing

Select a real-world scenario. One API call — our agent classifies every line item, calculates duties, and generates the customs filing.

Invoice Line Items(8 items)
Total: $56,500 | 73,000 units
#DescriptionQtyValueOrigin
0
Roasted ground Robusta coffee, 250g vacuum-sealed retail bags5,000$7,500VN
1
Roasted salted cashew nuts, 150g resealable consumer pouches8,000$12,000VN
2
Dried mango slices, no sugar added, 100g snack pouches10,000$8,000VN
3
Ground turmeric powder, 200g glass jars, consumer grade6,000$4,200IN
4
Whole black peppercorns, 100g grinder-top bottles8,000$4,800VN
5
Green tea bags, 25-count boxes, individually foil-wrapped12,000$6,000VN
6
Raw wildflower honey, 340g squeeze bottles, unfiltered4,000$8,000VN
7
Dried whole star anise, 50g consumer spice bags20,000$6,000VN

Built for Global Trade

ClearanceAI powers the compliance engine for a variety of platforms and providers.

1

Ecommerce Companies

For brands that ship internationally and need accurate HTS classification.

2

Online Marketplaces

Ensure compliance for millions of third-party seller SKUs at scale.

3

Customs Brokers

Automate entry writing and focus on exceptions rather than manual data entry.

4

Logistics Providers

Add value to your shipping platforms or APIs with built-in customs workflows.

5

Government Agencies

Modernize customs infrastructure and enhance border enforcement.

6

Shipping Software

Enhance shipping platforms with automated HTS classification.

Developer Experience

Three Lines of Code

Import the SDK, initialize with your API key, and classify. That's the entire integration.

Python
from clearance import ClearanceAI
client = ClearanceAI("sk_live_...")
result = client.classify("atlantic salmon fillets")
# result.hts_code → "0302.14.00.20"
# result.duty_rate → "Free"
cURL
curl POST /classify \
-H "Authorization: Bearer sk_live_..." \
-d {
"line_items": [{"description": "salmon fillets"}]
}