API Ecosystem
Developer-First Trade APIs
Integrate tariff data, classification, and compliance checks directly into your systems. RESTful endpoints with comprehensive documentation.
API Status: Checking...
Available Endpoints
Production-ready APIs with live status monitoring.
GET
/api/demo/tariff-lookupLiveRetrieve all tariff codes in the demo dataset
{
"status": "success",
"data": [...],
"count": 5
}GET
/api/demo/tariff-lookup?code=8471.30LiveLook up a specific HS code with duty rates, Section 301/232 status, and country exceptions
{
"status": "success",
"data": {
"hsCode": "8471.30",
"description": "Portable automatic data...",
"dutyRate": "0%"
}
}GET
/api/demo/tariff-lookup?q=steelLiveSearch tariff descriptions by keyword
{
"status": "success",
"data": [...],
"count": 1
}POST
/api/sku/classifyLiveAI-powered HS code classification for product descriptions (authenticated, streaming)
{
"status": "completed",
"result": {
"hsCode": "8507.60",
"confidence": 0.92
}
}Live API Test
Try the tariff lookup endpoint with a real request.
GET /api/demo/tariff-lookup?code=
Available codes: 8471.30, 2933.21, 7304.19, 6110.20, 0402.10
RESTful
JSON responses
Authenticated
Session-based auth
<200ms
Avg. response time
Streaming
SSE for classification
