# Redfin Property

Get detailed information about a specific Redfin property.

- **Documentation:** [https://scrappa.co/docs/redfin-api/redfin_property](https://scrappa.co/docs/redfin-api/redfin_property)
- **API group:** Redfin API
- **Endpoint:** `GET https://scrappa.co/api/redfin/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 |
| --- | --- | --- | --- |
| `property_id` | integer | Yes | Redfin property ID (e.g., 60791456 from URL /home/60791456) |
| `listing_id` | integer | No | Redfin listing ID from search results (optional) |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/redfin/property?property_id=60791456"
```

## Example response

```json
{
    "data": []
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 400 | Invalid characters in parameter | The request contains null bytes or unsupported control characters. |
| 422 | The request validation failed | One or more Redfin request parameters failed validation. |
| 404 | Property not found | Property not found |
| 500 | Failed to fetch property details after multiple attempts. | 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)
