# Realestate.com.au Property

Fetch a realestate.com.au property page through browser-orchestrator and extract the embedded ArgonautExchange listing data as structured JSON.

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

## 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 |
| --- | --- | --- | --- |
| `url` | string | Yes | Full realestate.com.au property URL. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/realestate-com-au/property?url=https%3A%2F%2Fwww.realestate.com.au%2Fproperty-house-vic-tarneit-143160680"
```

## Example response

```json
{
    "success": true,
    "data": {
        "listing_id": "143160680",
        "listing": {
            "id": "143160680",
            "property_type": "House",
            "price": "$650,000"
        }
    }
}
```

## 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)
