REST API access to 11.3B+ shipment records, 20.9M+ company profiles, and live trending-product feeds. JSON responses, OAuth2 authentication, generous rate limits. Included with the Business tier.
The REST endpoints serve the same records you see in the web platform, so you can explore them as a searchable datasheet before wiring the JSON into your own stack.

The ShipScout API exposes the same data layer that powers our web platform. Build internal trade dashboards, enrich your own SaaS product with shipment context, fire alerts when a competitor lands a new buyer, or pipe customs records into your data warehouse. Source data is drawn from customs authorities, port records, public business registers (MCA, Companies House, SEC EDGAR), and LinkedIn public profiles, the same sources the UI uses.
Search the global shipment index. Filter by HS code, origin, destination, port, date range, buyer or supplier name. Cursor pagination.
Full company profile: address, registration, trading activity, top buyers and suppliers, HS-code basket and last-seen shipping date.
Surging-demand products by week / month. Filter by country, region, or HS chapter. Ranked by import-value delta.
Country-level totals: import and export by HS chapter, top trading partners, year-over-year deltas. Useful for macro dashboards.
Subscribe to triggers: a new shipment by a watched company, a new buyer in a watched HS code, or a threshold breach.
Verified decision-maker contacts attached to any company. Enrich your CRM in one call.
Find recent US imports of HS code 7308 (steel structures) from Indian suppliers, last 90 days, 25 results:
curl -X GET "https://api.shipscout.ai/v1/shipments/search" \
-H "Authorization: Bearer YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json" \
--data-urlencode "hs_code=7308" \
--data-urlencode "destination_country=US" \
--data-urlencode "origin_country=IN" \
--data-urlencode "date_from=2026-01-27" \
--data-urlencode "date_to=2026-04-27" \
--data-urlencode "limit=25"
{
"data": [
{
"shipment_id": "ssh_01HZK8N4P2X9Q7M3R5T8V2",
"bill_of_lading": "MAEU240419-7732",
"date": "2026-04-19",
"hs_code": "73089090",
"product_description": "Prefabricated steel building structures",
"origin": {
"country": "IN",
"port": "INNSA",
"supplier": {
"id": "co_4f8a7e21",
"name": "REDACTED STEEL EXPORTS PVT LTD",
"city": "Mumbai"
}
},
"destination": {
"country": "US",
"port": "USLAX",
"buyer": {
"id": "co_8b1c4d09",
"name": "REDACTED INDUSTRIAL HOLDINGS LLC",
"city": "Long Beach, CA"
}
},
"value_usd": 184320,
"weight_kg": 28140,
"containers": [{ "type": "40HC", "count": 2 }]
}
],
"pagination": {
"next_cursor": "eyJzaWQiOiJzc2hfMDFIWks4...",
"has_more": true
},
"rate_limit": {
"limit_per_min": 600,
"remaining": 597,
"reset_at": "2026-04-27T11:42:00Z"
}
}
/oauth/token with your client ID + secret, receive a 1-hour access token.X-RateLimit-Remaining and X-RateLimit-Reset on every call./oauth/token, get a Bearer token, call any v1 endpoint. Sample SDKs in Python and Node.js are coming; any HTTP client works in the meantime./v1/companies/{id} calls into their onboarding flow to pre-populate a customer's trade history when they sign up./v1/countries/aggregates nightly to track origin-country diversification across 14 commodity baskets.company_id, and gets a Slack ping within 30 minutes of any new shipment leaving the competitor's loading port.shipments/search endpoint into Snowflake for client reports.Typed clients with built-in pagination helpers, retry-with-backoff, and webhook signature verification. Until then the API is fully usable with any HTTP client. Email [email protected] for early SDK access.
API access starts at the Business tier. Starter pricing from ₹9,917/month; API access tier upwards. See pricing or request API keys. Detailed reference docs at /features/crm-ai and the developer portal (link in your dashboard once provisioned).
JSON, OAuth2, generous rate limits. The same data that powers the platform, exposed for your stack.