# Realestate.com.au Sales Events

Call the public sales-events API path through the approved solver/proxy path for state-level sales and auction event data.

- **Documentation:** [https://scrappa.co/docs/realestate-com-au-api/realestate_com_au_sales_events](https://scrappa.co/docs/realestate-com-au-api/realestate_com_au_sales_events)
- **API group:** Realestate.com.au API
- **Endpoint:** `GET https://scrappa.co/api/realestate-com-au/sales-events`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `state` | string | No | Australian state or territory code, e.g. nsw, vic, qld. |
| `url` | string | No | Full sales-events-api.realestate.com.au URL. Optional alternative to state. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/realestate-com-au/sales-events?state=nsw"
```

## Example response

```json
{
    "success": true,
    "data": {
        "state": "nsw",
        "events": []
    }
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 422 | Request validation failed. |  |
| 503 | Realestate.com.au returned a challenge without parseable page data. |  |
| 503 | The upstream service is temporarily unavailable. Please retry shortly. |  |
| 503 | The upstream service is temporarily unavailable. Please retry shortly. |  |
| 503 | The upstream service is temporarily unavailable. Please retry shortly. |  |

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
