Endpoint Playground
Test Crawlora's US housing markets dataset item API with realistic prefilled filters. Generate a cURL request, inspect stored structured JSON records, and open the full docs or pricing page when you are ready to integrate dataset search. Dataset Playground requests query indexed data and do not apply proxy routing.
curl "https://api.crawlora.net/api/v1/datasets/housing-markets/items/<region_type>/<table_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| region_type (path) | string | Yes | Region level enum: national, metro, county, city, zip | |
| table_id (path) | integer | Yes | Redfin table id (the region's stable numeric id) | |
| period | string | No | Exact period start date, YYYY-MM-DD; defaults to the latest period | |
| property_type | string | No | Property type enum: All Residential, Single Family Residential, Condo/Co-op, Townhouse, Multi-Family (2-4 Unit), Single Units Only; defaults to All Residential | |
| history | boolean | No | Return the full monthly series instead of a single period |
{
"code": 200,
"msg": "OK",
"data": {
"region_type": "zip",
"region_type_id": 2,
"table_id": 26097,
"region": "Zip Code: 60616",
"state": "Illinois",
"state_code": "IL",
"zip_code": "60616",
"parent_metro": "Chicago, IL",
"parent_metro_code": "16984",
"property_type": "All Residential",
"property_type_id": -1,
"period_begin": "2026-03-01",
"period_end": "2026-05-31",
"is_latest": true,
"median_sale_price": 340000,
"median_sale_price_yoy": 0.062,
"median_list_price": 349900,
"homes_sold": 94,
"inventory": 151,
"median_dom": 38,
"median_household_income": 91245,
"income_geo_id": "860Z200US60616",
"income_vintage": "acs2024_5yr",
"price_to_income": 3.73,
"salary_to_buy": 96581,
"affordability_gap": 5336,
"mortgage_rate_pct": 6.49,
"source": "redfin_data_center",
"run_id": "housing-20260711",
"schema_version": 1
}
}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 one housing-market record by region_type and Redfin table_id from dataset id enum value `housing-markets`. region_type enum: `national`, `metro`, `county`, `city`, `zip`. property_type enum: `All Residential`, `Single Family Residential`, `Condo/Co-op`, `Townhouse`, `Multi-Family (2-4 Unit)`, `Single Units Only` (defaults to `All Residential`). `period` defaults to the most recent period on record. Pass `history=true` to get the full monthly series (a `{dataset, region_type, table_id, property_type, items}` envelope, sorted by period ascending) instead of a single record. Dataset endpoints are built for repeatable structured search, facets, geo queries, pagination, and item lookup over indexed records. They do not trigger live scraping or proxy routing.
{
"code": 200,
"msg": "OK",
"data": {
"region_type": "zip",
"region_type_id": 2,
"table_id": 26097,
"region": "Zip Code: 60616",
"state": "Illinois",
"state_code": "IL",
"zip_code": "60616",
"parent_metro": "Chicago, IL",
"parent_metro_code": "16984",
"property_type": "All Residential",
"property_type_id": -1,
"period_begin": "2026-03-01",
"period_end": "2026-05-31",
"is_latest": true,
"median_sale_price": 340000,
"median_sale_price_yoy": 0.062,
"median_list_price": 349900,
"homes_sold": 94,
"inventory": 151,
"median_dom": 38,
"median_household_income": 91245,
"income_geo_id": "860Z200US60616",
"income_vintage": "acs2024_5yr",
"price_to_income": 3.73,
"salary_to_buy": 96581,
"affordability_gap": 5336,
"mortgage_rate_pct": 6.49,
"source": "redfin_data_center",
"run_id": "housing-20260711",
"schema_version": 1
}
}curl "https://api.crawlora.net/api/v1/datasets/housing-markets/items/<region_type>/<table_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"