Endpoint Playground
Test Crawlora's Redfin Search 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/search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | No | Display location; resolved via autocomplete when region_id is omitted | |
| page | integer | No | 1-based page | |
| region_id | integer | No | Redfin region id from autocomplete | |
| region_type | integer | No | Redfin region type from autocomplete (defaults to 6, city) | |
| status | string | No | Listing status: for_sale or sold | |
| min_price | integer | No | Minimum price filter | |
| max_price | integer | No | Maximum price filter | |
| min_beds | integer | No | Minimum bedrooms filter | |
| min_baths | number | No | Minimum bathrooms filter |
{
"code": 200,
"msg": "OK",
"data": {
"location": "San Francisco, CA",
"page": 1,
"region_id": 17151,
"region_type": 6,
"results": [
{
"property_id": "1715020",
"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",
"property_type": "Condo/Co-op",
"status": "Active",
"price": 1250000,
"beds": 2,
"baths": 2,
"sqft": 1100,
"lot_size": 2500,
"year_built": 1998,
"days_on_market": 7,
"price_per_sqft": 1136,
"hoa_monthly": 450,
"mls_number": "424001234",
"latitude": 37.7596,
"longitude": -122.4269
}
]
}
}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 listing search results from Redfin's credential-free region CSV endpoint. Pass region_id/region_type from autocomplete to skip location resolution.
{
"code": 200,
"msg": "OK",
"data": {
"location": "San Francisco, CA",
"page": 1,
"region_id": 17151,
"region_type": 6,
"results": [
{
"property_id": "1715020",
"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",
"property_type": "Condo/Co-op",
"status": "Active",
"price": 1250000,
"beds": 2,
"baths": 2,
"sqft": 1100,
"lot_size": 2500,
"year_built": 1998,
"days_on_market": 7,
"price_per_sqft": 1136,
"hoa_monthly": 450,
"mls_number": "424001234",
"latitude": 37.7596,
"longitude": -122.4269
}
]
}
}curl "https://api.crawlora.net/api/v1/redfin/search" \
-H "x-api-key: $CRAWLORA_API_KEY"