Endpoint Playground
Test Crawlora's Redfin Region Market Trends 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/region-trends?region_id=<region_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| region_id | integer | Yes | Redfin region id from autocomplete | |
| region_type | integer | No | Redfin region type from autocomplete (defaults to 6, city) |
{
"code": 200,
"msg": "OK",
"data": {
"region_id": 17151,
"region_type": 6,
"median_list_price": "$1.29M",
"median_sale_price": "$1.76M",
"median_list_per_sqft": "$943",
"median_sale_per_sqft": "$1.14K",
"median_sale_per_list": "115.5%",
"avg_num_offers": "5",
"avg_down_payment": "35.7%",
"avg_days_on_market": "31",
"num_homes_sold": "568",
"num_homes_on_market": "978",
"yoy_sale_price": "+14.0%",
"yoy_sale_per_sqft": "+12.6%"
}
}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 Redfin's aggregate market trends for a region (median list/sale price, sale-to-list, offers, days on market, inventory, year-over-year). Faithful pass-through of Redfin's public aggregate-trends resource.
{
"code": 200,
"msg": "OK",
"data": {
"region_id": 17151,
"region_type": 6,
"median_list_price": "$1.29M",
"median_sale_price": "$1.76M",
"median_list_per_sqft": "$943",
"median_sale_per_sqft": "$1.14K",
"median_sale_per_list": "115.5%",
"avg_num_offers": "5",
"avg_down_payment": "35.7%",
"avg_days_on_market": "31",
"num_homes_sold": "568",
"num_homes_on_market": "978",
"yoy_sale_price": "+14.0%",
"yoy_sale_per_sqft": "+12.6%"
}
}curl "https://api.crawlora.net/api/v1/redfin/region-trends?region_id=<region_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"