# Trademo — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access comprehensive global trade data to search companies, find manufacturers by country, and review detailed trade profiles, sanctions lists, and politically exposed persons (PEP) lists. Monitor global trade indices and build a complete directory of international trading partners and compliance information.

**Category:** Business Directories | **Website:** [trademo.com/](https://trademo.com/) | **Docs:** [parse.bot/marketplace/7add1278-fd8f-4ebd-9cc8-0fe47dd360e5/trademo-com-api](https://parse.bot/marketplace/7add1278-fd8f-4ebd-9cc8-0fe47dd360e5/trademo-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-trademo-com-api-7add1278/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_countries_list

Get the list of countries available on Trademo with links to their buyers and manufacturers directories. Returns all available countries (200+). Each country entry provides URLs for browsing buyers and manufacturers registered in that country.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trademo-com-api-7add1278/get_countries_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_global_trade_indices

Get global trade indices data showing import/export indices for major trading countries (US, Russia, Mexico, Brazil, Vietnam). Each index tracks trade volume trends for a specific country and direction (import or export).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trademo-com-api-7add1278/get_global_trade_indices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_pep_lists

Get the list of PEP (Politically Exposed Persons) list categories available on Trademo, with descriptions, list counts, and entity counts. Categories include government ministers, top officials, members of parliament, diplomats, and others.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trademo-com-api-7add1278/get_pep_lists \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_sanctions_lists

Get the list of sanctions list categories available on Trademo, with descriptions, list counts, and entity counts. Categories include global, criminal, healthcare, financial, maritime, and government procurement sanctions.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trademo-com-api-7add1278/get_sanctions_lists \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_companies

Search for companies using the Trademo autosuggest API. Returns matching company names with IDs, slugs, and shipment value rankings. Results are ordered by relevance and shipment volume. Useful for company lookup before deeper trade intelligence queries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword for company name (e.g. 'apple', 'samsung', 'walmart') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trademo-com-api-7add1278/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
