Brokerage software / entry-summary workflow
Customs broker
Pain
Calculating the full layered duty stack — MFN base + Section 232 + Section 301 + IEEPA + Reciprocal + AD/CVD + Chapter 99 — for every entry line is error-prone and slows entry-summary turnaround. Rate-table spreadsheets drift out of sync within hours of a new presidential proclamation or FRN.
Integration
Replace the duty-rate spreadsheet with one call. Pass the HTS, origin, declared value, and entry date — receive the layered stack, the effective ad-valorem rate, the citations to the Federal Register / Proclamation / EO, and the Chapter 99 expansions that apply.
Endpoints
- GET/v1/duty/calculate
Sample request
curl https://api.tandom.ai/v1/duty/calculate \ -H "Authorization: Bearer tk_live_..." \ -G \ -d "hts=7307.91.50.10" \ -d "origin=CN" \ -d "value=10000" \ -d "date=2026-04-30"
Response (excerpt)
{
"dutyInfo": {
"effectiveRatePercent": 47.5,
"components": [
{ "type": "MFN", "ratePercent": 5.5 },
{ "type": "Section 301", "ratePercent": 25, "frCitation": "FR 2024-..." },
{ "type": "IEEPA", "ratePercent": 7.5, "executiveOrder": "EO 14256" },
{ "type": "Reciprocal", "ratePercent": 9.5 }
],
"appliedExclusions": [],
"citations": [...]
}
}