# Equipment Trader — 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 and browse thousands of machinery listings with detailed pricing, specifications, and seller contact information. Find the right equipment for your needs by filtering inventory across Equipment Trader's marketplace.

**Category:** Marketplaces | **Website:** [equipmenttrader.com/](https://equipmenttrader.com/) | **Docs:** [parse.bot/marketplace/dbdf4d22-1f09-48a4-bc51-7a4816853295/equipmenttrader-com-api](https://parse.bot/marketplace/dbdf4d22-1f09-48a4-bc51-7a4816853295/equipmenttrader-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-equipmenttrader-com-api-dbdf4d22/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Get detailed information for a specific machinery listing by its numeric ID. Returns full listing details including pricing, specifications, seller contact information, and location. The ad_id can be obtained from search_listings results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ad_id` | string | Yes | The unique numeric ID of the listing, obtainable from search_listings results |

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

### search_listings

Search for industrial machinery listings on Equipment Trader. Returns paginated results with listing summaries including pricing, location, and seller information. Paginates via integer page counter. Without any filters, returns a broad set of listings across all categories.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Search keyword (e.g., excavator, forklift, bulldozer) |
| `make` | string | No | Filter by manufacturer make (e.g., CATERPILLAR, KUBOTA, JOHN DEERE, BOBCAT) |
| `model` | string | No | Filter by model name |
| `page` | integer | No | Page number for pagination (1-based) |
| `radius` | integer | No | Search radius in miles from the zip code |
| `sort` | string | No | Sort order for results |
| `zip` | string | No | 5-digit US ZIP code for location-based search |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-equipmenttrader-com-api-dbdf4d22/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","make":"<string>","model":"<string>","page":"<integer>","radius":"<integer>","sort":"<string>","zip":"<string>"}'
```
