# Fire Truck Mall — 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.

> Browse all available fire trucks from Fire Truck Mall with complete details including pricing, year, specifications, and images. Track when each listing was posted to find the newest inventory and compare vehicles across the marketplace.

**Category:** Marketplaces | **Website:** [www.firetruckmall.com/AvailableTrucks/All?sort=DESC&perpage=100](https://www.firetruckmall.com/AvailableTrucks/All?sort=DESC&perpage=100) | **Docs:** [parse.bot/marketplace/288da386-0166-4023-842a-9d62acef4866/firetruckmall-com-api](https://parse.bot/marketplace/288da386-0166-4023-842a-9d62acef4866/firetruckmall-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-firetruckmall-com-api-288da386/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_trucks

Fetches all fire truck listings across all pages from firetruckmall.com. Returns only trucks with valid numeric prices greater than zero — skips listings with pricingType 'QUOTE' and zero-priced entries. Paginated internally (100 per page); the caller receives the full collected set. Each truck includes title, listing URL, image URL, price, year, and specs text.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-firetruckmall-com-api-288da386/get_all_trucks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_truck_dates

Fetches the Last-Modified date for a batch of S3 image URLs via concurrent HEAD requests. Use this after get_all_trucks to determine approximate listing dates for trucks, using their image_url values. Returns a mapping of each URL to its Last-Modified header value (or null if unavailable).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `image_urls` | string | Yes | JSON-encoded array of S3 image URLs to fetch Last-Modified dates for, e.g. ["https://s3.amazonaws.com/..."] |
| `max_workers` | integer | No | Number of concurrent threads for HEAD requests. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-firetruckmall-com-api-288da386/get_truck_dates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"image_urls":"<string>","max_workers":"<integer>"}'
```
