Endpoint Playground
Test Crawlora's Redfin Property API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/redfin/property" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | No | Redfin listing URL (primary key) | |
| property_id | string | No | Redfin property id, used when url is not provided | |
| listing_id | string | No | Redfin listing id, improves completeness with property_id |
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "1715020",
"listing_id": "216597668",
"address": "123 Main St #4",
"city": "San Francisco",
"state": "CA",
"zip": "94110",
"url": "https://www.redfin.com/CA/San-Francisco/123-Main-St-94110/home/1715020",
"image": "https://ssl.cdn-redfin.com/photo/1.jpg",
"description": "Sunny 2 bed 2 bath condo in the Mission.",
"facts": [
"Lot Size: 2,500 sqft",
"Year Built: 1998"
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized Redfin public property details. Provide a listing url, or a property_id (optionally with listing_id) to use Redfin's public stingray detail API.
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "1715020",
"listing_id": "216597668",
"address": "123 Main St #4",
"city": "San Francisco",
"state": "CA",
"zip": "94110",
"url": "https://www.redfin.com/CA/San-Francisco/123-Main-St-94110/home/1715020",
"image": "https://ssl.cdn-redfin.com/photo/1.jpg",
"description": "Sunny 2 bed 2 bath condo in the Mission.",
"facts": [
"Lot Size: 2,500 sqft",
"Year Built: 1998"
]
}
}curl "https://api.crawlora.net/api/v1/redfin/property" \
-H "x-api-key: $CRAWLORA_API_KEY"