# Row52 — 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 for vehicles available at Row52 recycling yards and get detailed information including VIN, year, make, model, row location, and when each vehicle was added to inventory. Find the specific vehicle you're looking for across Row52 yard locations with comprehensive vehicle details.

**Category:** Automotive | **Website:** [row52.com/search/?locationid=88](https://row52.com/search/?locationid=88) | **Docs:** [parse.bot/marketplace/a0e26a0e-da3f-4f6d-b67e-e3a8d2832d99/row52-com-api](https://parse.bot/marketplace/a0e26a0e-da3f-4f6d-b67e-e3a8d2832d99/row52-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-row52-com-api-a0e26a0e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_yard_vehicles

Get all vehicles at a specific yard location, paginated. Returns vehicle details from the first N pages of results (30 vehicles per page). Each page contains up to 30 vehicles. The response includes yard metadata (name, total results, total pages) alongside the vehicle array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location_id` | string | Yes | The yard location ID (e.g., '88' for PICK-n-PULL Windsor, '89' for PICK-n-PULL Carson City). |
| `max_pages` | integer | No | Maximum number of pages to fetch (30 vehicles per page). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-row52-com-api-a0e26a0e/get_yard_vehicles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location_id":"<string>","max_pages":"<integer>"}'
```
