# Machineseeker — 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 industrial machinery listings from Machineseeker, view detailed product information, find similar equipment, and filter results by specific criteria. Discover thousands of machines with comprehensive specifications and pricing to help you find the right equipment for your needs.

**Category:** Marketplaces | **Website:** [machineseeker.com/](https://machineseeker.com/) | **Docs:** [parse.bot/marketplace/bc1421a3-8168-4f90-a7de-3db7ca1443e6/machineseeker-com-api](https://parse.bot/marketplace/bc1421a3-8168-4f90-a7de-3db7ca1443e6/machineseeker-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-machineseeker-com-api-bc1421a3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_detail

Retrieve full details for a specific listing by its ID, including specifications, description, images, and seller information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | The listing ID (e.g. '22100193'). Available from search_listings results. |
| `slug` | string | No | URL slug for the listing. Optional; improves routing but not required. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-machineseeker-com-api-bc1421a3/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>","slug":"<string>"}'
```

### get_search_filters

Retrieve available search filters and facets for a given query, including categories, manufacturers, locations, conditions, listing types, and detail filters with counts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | No | Search keyword to get contextual filter counts (e.g. 'excavator'). Omitting returns global filters. |

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

### get_similar_listings

Retrieve similar listings for a given listing. Returns an array of related machinery listings shown on the listing detail page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | The listing ID to find similar listings for (e.g. '20798242'). Available from search_listings results. |
| `slug` | string | No | URL slug for the listing. Optional; improves routing but not required. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-machineseeker-com-api-bc1421a3/get_similar_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>","slug":"<string>"}'
```

### search_listings

Search for machinery listings by keyword with optional filters and pagination. Returns a paginated list of matching listings with basic details including title, price, location, and condition.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_ids` | string | No | Category ID to filter by (e.g. '8' for Construction machinery). Values available from get_search_filters. |
| `manufacturers` | string | No | Manufacturer name to filter by (e.g. 'Caterpillar'). Values available from get_search_filters. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword (e.g. 'CNC lathe', 'excavator'). Omitting returns all listings. |

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