# Realcommercial — 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 commercial property listings across Australia, view detailed property information, and stay updated with the latest real estate market news all from one platform. Find investment opportunities, compare properties, and read industry insights to make informed decisions in the commercial property market.

**Category:** Real Estate | **Website:** [realcommercial.com.au/](https://realcommercial.com.au/) | **Docs:** [parse.bot/marketplace/180dfbb5-3ee3-4bb3-84bd-adfe29d12351/realcommercial-com-au-api](https://parse.bot/marketplace/180dfbb5-3ee3-4bb3-84bd-adfe29d12351/realcommercial-com-au-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-realcommercial-com-au-api-180dfbb5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_news

Fetch the latest commercial property news articles from realcommercial.com.au. Returns a list of recent news items with title, URL, description, publication date, and thumbnail images.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-realcommercial-com-au-api-180dfbb5/get_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_property_details

Get full details of a specific property by its listing ID. Returns comprehensive information including description, price, address, map coordinates, agencies with contact details, attributes, photos, nearby places, and similar listings. The property_id is obtainable from search_properties results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_id` | string | Yes | The numeric listing ID of the property, obtainable from search_properties results[*].id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-realcommercial-com-au-api-180dfbb5/get_property_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_id":"<string>"}'
```

### search_properties

Search for commercial properties for sale, rent, sold, or leased across Australia. Returns a paginated list of listings with details like title, address, price, property types, floor area, and agent/agency information. Results come from server-rendered search pages with approximately 10 listings per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `car_spaces` | integer | No | Minimum number of car spaces. |
| `channel` | string | No | Channel to search in. |
| `keywords` | string | No | Keywords to search for in listings. |
| `locations` | array | No | List of locations as strings in format 'Suburb, STATE POSTCODE' e.g. ["Sydney, NSW 2000"]. First location is used for search URL. |
| `max_floor_area` | integer | No | Maximum floor area in m2. |
| `max_price` | integer | No | Maximum price filter. |
| `min_floor_area` | integer | No | Minimum floor area in m2. |
| `min_price` | integer | No | Minimum price filter. |
| `page` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Requested results per page (site typically returns 10 per page regardless). |
| `property_types` | array | No | List of property types to filter by: offices, retail, industrial-warehouse, land-development, showrooms-bulky-goods, hotel-motel-leisure, medical-consulting, farming-rural, other. |
| `sort_by` | string | No | Sort order for results. |
| `tenure_types` | array | No | List of tenure types to filter by: tenanted, vacant. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-realcommercial-com-au-api-180dfbb5/search_properties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"car_spaces":"<integer>","channel":"<string>","keywords":"<string>","locations":"<array>","max_floor_area":"<integer>","max_price":"<integer>","min_floor_area":"<integer>","min_price":"<integer>","page":"<integer>","page_size":"<integer>","property_types":"<array>","sort_by":"<string>","tenure_types":"<array>"}'
```
