Endpoint Playground
Test Crawlora's Redfin Estimate 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/estimate?property_id=<property_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| property_id | string | Yes | Redfin property id |
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "1715020",
"estimate": 1850000,
"estimate_text": "$1.85M",
"listing_price": 2500000,
"address": "1242 Sacramento St #1",
"beds": 2,
"baths": 2,
"sqft": 1609,
"year_built": 1900,
"latitude": 37.792652,
"longitude": -122.4133936,
"updated_at": 1780929708431,
"property_time_series": [
1800000,
1820000,
1850000
],
"city_time_series": [
1500000,
1510000,
1520000
],
"county_time_series": [
1400000,
1410000,
1420000
],
"postal_code_time_series": [
1523302,
1529750,
1537670
]
}
}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 the Redfin Estimate for a property, including the current estimate, property facts, and the monthly estimate history with city/county/postal comparatives. Faithful pass-through of Redfin's public avm + avmHistoricalData resources.
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "1715020",
"estimate": 1850000,
"estimate_text": "$1.85M",
"listing_price": 2500000,
"address": "1242 Sacramento St #1",
"beds": 2,
"baths": 2,
"sqft": 1609,
"year_built": 1900,
"latitude": 37.792652,
"longitude": -122.4133936,
"updated_at": 1780929708431,
"property_time_series": [
1800000,
1820000,
1850000
],
"city_time_series": [
1500000,
1510000,
1520000
],
"county_time_series": [
1400000,
1410000,
1420000
],
"postal_code_time_series": [
1523302,
1529750,
1537670
]
}
}curl "https://api.crawlora.net/api/v1/redfin/estimate?property_id=<property_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"