# Realestate.com.au Agency Profile

Fetch a public realestate.com.au agency profile page through browser-orchestrator and return embedded agency, team, listing, review, and performance data when available.

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

## 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 agency profile URL. |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/realestate-com-au/agency-profile?url=https%3A%2F%2Fwww.realestate.com.au%2Fagency%2Fprofile-real-estate-adelaide-OYYCER"
```

## Example response

```json
{
    "success": true,
    "data": {
        "url": "https://www.realestate.com.au/agency/profile-real-estate-adelaide-OYYCER",
        "profile": []
    }
}
```

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