# Policeauctionscanada — 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 police auction listings across Canada with real-time details on items, current bids, and time remaining for each auction. Find deals quickly by filtering listings and identifying auctions ending soon.

**Category:** Marketplaces | **Website:** [www.policeauctionscanada.com/](https://www.policeauctionscanada.com/) | **Docs:** [parse.bot/marketplace/46cb9076-a0b0-4164-92f0-00babf761bb4/policeauctionscanada-com-api](https://parse.bot/marketplace/46cb9076-a0b0-4164-92f0-00babf761bb4/policeauctionscanada-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-policeauctionscanada-com-api-46cb9076/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Get detailed information about a specific auction listing including full description, current bid, bid count, high bidder, start/end times, and images. Returns a single Listing resource keyed by listing_id.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Numeric listing ID (e.g. '88437991'). Obtainable from search_listings or list_ending_soon results. |

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

### list_ending_soon

List auction items ending within 24 hours, sorted by ending time. Returns paginated results with current bid, time remaining, and bid count. Useful for finding last-minute bidding opportunities.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-policeauctionscanada-com-api-46cb9076/list_ending_soon \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### search_listings

Search auction listings by keyword with optional category filter. Returns paginated results with current bid, time remaining, and bid count for each listing. Paginates via integer page number. Omitting query returns all active listings; adding a category ID narrows results to that category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category ID to filter results. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keywords to filter listings (e.g. 'bike', 'camera'). Omitting returns all active listings. |

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