# Zedrealestate — 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.

> Connect with luxury real estate sales agents in Melbourne and browse their current property listings. Find the perfect high-end home by exploring available properties and the agents representing them.

**Category:** Real Estate | **Website:** [zedrealestate.au/](https://zedrealestate.au/) | **Docs:** [parse.bot/marketplace/a118053e-6b0d-4004-a28f-f407c79ab31d/zedrealestate-au-api](https://parse.bot/marketplace/a118053e-6b0d-4004-a28f-f407c79ab31d/zedrealestate-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-zedrealestate-au-api-a118053e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_agent_listings

Retrieves all property listings for a specific sales agent, identified by full name. Returns listing details including address, price, bedrooms, bathrooms, images, floorplan, video URL, and the property's unique REA ID. Each listing includes all associated images from the media library.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `agent_name` | string | Yes | Full name of the sales agent as displayed on the team page (e.g. 'Kamal Raj', 'Zed Nasheet'). Case-insensitive; converted to slug format for matching. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zedrealestate-au-api-a118053e/get_agent_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"agent_name":"<string>"}'
```

### get_sales_agents

Retrieves all sales agents at Zed Real Estate who genuinely sell homes. Returns agent names, slugs, profile URLs, and department affiliations.

**Estimated cost:** Metered

_No parameters required._

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