trademo.com APItrademo.com ↗
Access Trademo trade data via API: country directories, company search, sanctions lists, PEP lists, and global trade indices for 200+ countries.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/20109aa3-5544-473d-9fba-56ed64f112a8/get_countries_list' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the list of countries available on Trademo with links to their buyers and manufacturers directories. Returns all available countries (200+).
No input parameters required.
{
"type": "array",
"fields": {
"buyers_url": "string, URL to the country's buyers directory",
"country_name": "string, country display name",
"manufacturers_url": "string, URL to the country's manufacturers directory"
},
"sample": {
"data": [
{
"buyers_url": "https://www.trademo.com/united-states/buyers",
"country_name": "United States",
"manufacturers_url": "https://www.trademo.com/united-states/manufacturers"
},
{
"buyers_url": "https://www.trademo.com/mexico/buyers",
"country_name": "Mexico",
"manufacturers_url": "https://www.trademo.com/mexico/manufacturers"
}
],
"status": "success"
}
}About the trademo.com API
The Trademo API provides 5 endpoints covering global trade intelligence, including company search with shipment value rankings, sanctions and PEP compliance lists, and import/export indices for major trading nations. The search_companies endpoint returns company IDs, slugs, and shipment value metrics by keyword, while get_countries_list covers 200+ countries with direct links to buyers and manufacturers directories.
Country and Company Discovery
The get_countries_list endpoint returns every country available on Trademo, including country_name, buyers_url, and manufacturers_url — giving you direct links to buyer and manufacturer directory pages for each territory. For company lookups, search_companies accepts a query string (e.g. 'apple', 'walmart') and returns matching results with label (company name), company_id, company_slug, mongo_id, and a value field representing the company's shipment value ranking metric. This makes it straightforward to resolve a company name to its Trademo identifier for downstream use.
Compliance: Sanctions and PEP Lists
get_sanctions_lists and get_pep_lists both return categorized compliance data. Each response item includes a category_name, description, lists_count, entities_count, and a url pointing to the full category on Trademo. Sanctions categories cover major international screening programs; PEP categories cover Politically Exposed Persons organized by region or program type. The entities_count field lets you quickly gauge the scale of each list before navigating to it.
Global Trade Indices
get_global_trade_indices returns import and export index data for major trading countries including the US, Russia, Mexico, Brazil, and Vietnam. Each record includes index_name, description, and a url for the full index details. This endpoint is useful for tracking relative trade activity signals across key economies without building your own data pipeline against raw trade records.
- Build a supplier discovery tool that maps manufacturers by country using
buyers_urlandmanufacturers_urlfromget_countries_list. - Automate company name resolution to Trademo IDs using
search_companiesbefore enriching records with trade profile data. - Screen counterparties against sanctions programs by pulling category metadata and entity counts from
get_sanctions_lists. - Identify politically exposed persons in a due diligence workflow using
get_pep_listscategory data and entity counts. - Monitor trade activity trends across the US, Brazil, Vietnam, and other key economies using
get_global_trade_indices. - Populate a compliance dashboard with sanctions and PEP list coverage counts to surface gaps in screening programs.
- Generate country-level trade directories by pairing
get_countries_listoutput with company search results filtered by origin.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Trademo have an official developer API?+
What does `search_companies` return beyond a company name?+
search_companies returns label (company name), company_id, company_slug, mongo_id, and a value field representing a shipment value ranking metric. The company_slug and company_id can be used to construct profile URLs or reference companies in other queries. It does not return full company profiles, contact details, or shipment history directly.How granular is the sanctions and PEP data returned?+
category_name, description, lists_count, and entities_count, plus a URL to view the full list on Trademo. Individual entity records — names, aliases, nationalities, designating authorities — are not returned by these endpoints. You can fork this API on Parse and revise it to add an endpoint that fetches entity-level detail from within a given category.Does the API cover trade indices for countries beyond the US, Russia, Mexico, Brazil, and Vietnam?+
get_global_trade_indices returns data for those five countries. Indices for other major economies are not included. You can fork this API on Parse and revise it to add coverage for additional countries if Trademo surfaces them.