# Importyeti — 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.

> Search through millions of U.S. customs sea shipment records to discover suppliers and companies, getting back their names, shipment volumes, addresses, and related details. Use keyword search and autocomplete to quickly find potential business partners and suppliers in your industry.

**Category:** Business Directories | **Website:** [importyeti.com/](https://importyeti.com/) | **Docs:** [parse.bot/marketplace/af883f0b-896b-4c9b-8968-95880cba1822/importyeti-com-api](https://parse.bot/marketplace/af883f0b-896b-4c9b-8968-95880cba1822/importyeti-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-importyeti-com-api-af883f0b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### autocomplete

Get autocomplete suggestions for a search query. Returns matching company and supplier names with their entity type. Useful for validating or refining a keyword before running a full search_suppliers call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query to autocomplete. |

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

### search_suppliers

Search for suppliers and companies by keyword across ImportYeti's database of U.S. customs sea shipment records. Returns paginated results including supplier names, country codes, addresses, shipment counts, and business relationships. Each page returns up to 10 results. The total result set can span thousands of pages; use max_pages to cap fetching.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_pages` | integer | No | Maximum number of pages to fetch. 0 fetches all available pages. |
| `page` | integer | No | Starting page number. |
| `query` | string | No | Search keyword for finding suppliers or companies. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-importyeti-com-api-af883f0b/search_suppliers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_pages":"<integer>","page":"<integer>","query":"<string>"}'
```
