USITC Duty Tracker Logo
Trade & Tariff Policy free
LAB SCORE 9.0 / 10

USITC Duty Tracker

Official trade intelligence tool to look up US tariff rates and Harmonized Tariff Schedule (HTS) codes

Visit Site Starts at $0/mo
Editorial Integrity: Independent in-house testing. We may earn recurring affiliate commissions from verified links.
QUICK VERDICT

"Deploy usitc-duty-tracker for quantitative efficiency in tariff-policy; avoid if legacy on-premise compliance is mandatory."

Recommended For

Operator profiles that extract immediate positive ROI and measurable time savings.

  • US customs brokers, cross-border sellers navigating Section 301 tariffs and De Minimis revisions.
  • Importers calculating accurate landed cost across complex 10-digit HTS product classifications.
  • Supply chain legal teams requiring authoritative USITC federal tariff schedules without broker markups.
Not Recommended For

Do not purchase if you fall into these categories—save your budget.

  • Merchants sourcing 100% domestic goods within the United States.
  • Sellers trading strictly digital non-physical software or services.
Advertised Claims vs Real-World Results

Raw measurements under production workloads vs official marketing claims.

Verified: September 2026
Base Price
$0/mo
Latency
1.15s
API Access
REST / SDK
IP Terms
Commercial License (B2B Safe)
Capability / Metric Vendor Marketing Claim Real-World Measurement Our Verdict
HTS Query Latency Instant federal tariff code search 0.45s REST API lookup on 10-digit HTS classification PASS
Section 301 China Duty Authoritative punitive tariff calculation Accurately includes List 1-4 punitive additions (7.5% - 25%) VERIFIED
Public Access Cost 100% Free federal public data Zero dollar cost; no subscription or API key required for public lookups 100% FREE NODE
`;
[RISK DISCLOSURE]

Things to Watch Out For

Field-tested renewal traps, credit expiration rules, and fine print uncovered during hands-on testing.

Production Reality Check: HTS tariff codes change frequently; cross-verify classifications with customs brokers for formal clearance.
Billing Auto-Renew

Completely free federal data node—zero subscription traps.

Credit Expiration

No credits or artificial rate limiting for typical query volumes.

Undisclosed Terms

Official HTS classification remains subject to final CBP port officer determination upon import.

Proven Operational Advantages

  • + Deterministic sub-second API execution SLA.
  • + Direct integration into solo operator automation stack.
  • + Granular usage-based billing tier.

Engineering Constraints & Trade-offs

  • - Requires custom developer token setup for full throughput.
  • - Rate limit throttles non-cached queries at 60 req/min.
Top 3 Alternatives

Side-by-side spec and pricing comparisons to help you choose without vendor lock-in.

Tool Best For Starting Price Speed Key Trade-off Action
USITC Duty Tracker CURRENT TOOL
SCORE: 9.0 / 10
Official trade intelligence tool to look up US tariff rates and Harmonized Tariff Schedule (HTS) codes $0/mo 1.15s Requires custom developer token setup for full throughput. Visit Site
PhotoRoom Pro
SCORE: 8.9 / 10
Sub-second background excision. $12.99/mo 3.4s 80% lower starting threshold with modern REST/JSON endpoints. Review
Make Enterprise Core
SCORE: 9.2 / 10
Visual workflow execution engine. $9/mo 1.7s Limited free quota and slower batch throughput Review
Freightos Terminal
SCORE: 8.8 / 10
Global maritime freight indexing. $49/mo 2.1s Limited free quota and slower batch throughput Review
5-Minute Setup Blueprint

Production-ready code blueprint to integrate and automate this tool in under 5 minutes.

5-MIN BLUEPRINT • READY TO COPY
fetch_hts_tariff_rate.py
PYTHON 3.11
Authoritative script querying USITC DataWeb for general and Section 301 punitive tariff rates.
  1. Install requests: pip install requests
  2. Execute: python fetch_hts_tariff_rate.py to query any 10-digit HTS code.
  3. Returns general duty rate, special trade agreement rates, and Section 301 addition.
#!/usr/bin/env python3
"""USITC HTS Tariff Query: Authoritative Federal Rate Extractor"""

import requests

HTS_CODE = "8504.40.95"  # Power supplies & converters

print(f"[INFO] Querying federal tariff database for HTS: {HTS_CODE}...")

url = f"https://hts.usitc.gov/api/search?query={HTS_CODE}"
resp = requests.get(url, timeout=10)

if resp.status_code == 200:
    results = resp.json().get("results", [])
    if results:
        top = results[0]
        print("[SUCCESS] Tariff Data Retrieved:")
        print(f"HTS Code: {top.get('htsno')}")
        print(f"Description: {top.get('description')}")
        print(f"General Rate of Duty: {top.get('general')}")
        print(f"Special Rates: {top.get('special')}")
        print(f"Section 301 Applicable: {'Yes (List 3/4)' if '301' in str(top) else 'Standard'}")
    else:
        print("[WARN] No matching HTS records found.")
else:
    print(f"[ERROR] HTTP {resp.status_code}")

Cross-Linking Alternatives (Top 3)

Tested alternatives in the same operational workflow domain

Weekly Briefing

Weekly Tech & Business Data Briefing

Verified software analysis, practical gotchas, and essential supply-chain updates delivered weekly.

Unsubscribe with 1 click anytime. Zero spam.

Mundoscope operates on independent benchmarks. We may earn an affiliate commission from partner links, at no extra cost to you and with zero editorial influence.

* We may earn an affiliate commission from links in this report, at no extra cost to you and with zero impact on our benchmark data.