Endpoint Playground
Test Crawlora's Redfin Similar Listings 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/similar?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",
"results": [
{
"property_id": "12397617",
"listing_id": "216434372",
"address": "1601 Pacific Ave #403",
"city": "San Francisco",
"state": "CA",
"zip": "94109",
"url": "https://www.redfin.com/CA/San-Francisco/1601-Pacific-Ave-94109/unit-403/home/12397617",
"price": 1395000,
"beds": 2,
"baths": 2.5,
"sqft": 1184,
"price_per_sqft": 1178,
"days_on_market": 12,
"mls_number": "426136265"
}
]
}
}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 comparable ("similar") listings for a property as normalized listing rows. Faithful pass-through of Redfin's public similars resource.
{
"code": 200,
"msg": "OK",
"data": {
"property_id": "1715020",
"results": [
{
"property_id": "12397617",
"listing_id": "216434372",
"address": "1601 Pacific Ave #403",
"city": "San Francisco",
"state": "CA",
"zip": "94109",
"url": "https://www.redfin.com/CA/San-Francisco/1601-Pacific-Ave-94109/unit-403/home/12397617",
"price": 1395000,
"beds": 2,
"baths": 2.5,
"sqft": 1184,
"price_per_sqft": 1178,
"days_on_market": 12,
"mls_number": "426136265"
}
]
}
}curl "https://api.crawlora.net/api/v1/redfin/similar?property_id=<property_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"