# Boyes Group Realty — 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 Boyes Group Realty property listings in Saskatoon with pagination support, and view detailed information about individual properties. Find your next home by accessing current real estate listings with comprehensive property details all in one place.

**Category:** Real Estate | **Website:** [boyesgrouprealty.com/mylistings.html](https://boyesgrouprealty.com/mylistings.html) | **Docs:** [parse.bot/marketplace/bbf3be04-f460-4460-aa24-97d31dd526fc/boyesgrouprealty-com-api](https://parse.bot/marketplace/bbf3be04-f460-4460-aa24-97d31dd526fc/boyesgrouprealty-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-boyesgrouprealty-com-api-bbf3be04/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_detail

Get full details for a specific Boyes Group listing by its listing ID. Returns comprehensive property information including price, address, neighbourhood, MLS number, property type, status, bedrooms, bathrooms, floor area, listing agent, year built, property sub-type, building type, lot size, and full description. The listing_id comes from search_listings results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Numeric listing ID from search_listings results (e.g. from search_listings.listings[*].listing_id). |

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

### search_listings

Search Boyes Group Realty listings filtered to Saskatoon only. Returns paginated results with key property details including price, address, neighbourhood, MLS number, property type, status, bedrooms, bathrooms, floor area, listing agent, and a direct link to the detail page. Non-Saskatoon listings are excluded. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based). |

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