# Property Details

Fetch property details from Scrappa cache populated by the last /immowelt/search call. This avoids calling expose/detail endpoints that may be WAF/DataDome-blocked.

- **Documentation:** [https://scrappa.co/docs/immowelt-api/immowelt_property](https://scrappa.co/docs/immowelt-api/immowelt_property)
- **API group:** Immowelt API
- **Endpoint:** `GET https://scrappa.co/api/immowelt/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 |
| --- | --- | --- | --- |
| `id` | string | Yes | Estate id (e.g. "estate_<uuid>") or onlineId (e.g. "2kub55g") |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/immowelt/property?id=estate_f1d8e562-d663-429d-9fdd-33919737d3ea"
```

## Example response

```json
{
    "success": true,
    "property": {
        "id": "...",
        "online_id": "...",
        "title": "..."
    },
    "raw": []
}
```

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