Endpoint Playground
Test Crawlora's Rightmove New Homes 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/rightmove/new-homes/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | Yes | Rightmove location identifier from autocomplete | |
| page | integer | No | Result page (default 1) | |
| min_price | integer | No | Minimum price in whole GBP units, not pence | |
| max_price | integer | No | Maximum price in whole GBP units, not pence | |
| min_bedrooms | integer | No | Minimum bedrooms | |
| max_bedrooms | integer | No | Maximum bedrooms | |
| min_bathrooms | number | No | Minimum bathrooms | |
| max_bathrooms | number | No | Maximum bathrooms | |
| property_type | string | No | Property type filter (e.g. detached, flat, apartment, semi-detached, terrace, bungalow) |
{
"location": "REGION^87490",
"page": 1,
"results": [
{
"added_or_reduced": "Price reduced",
"address": "123 Example Street, London",
"bathrooms": 2,
"bedrooms": 3,
"currency": "GBP",
"days_on_market": 14,
"development": true,
"id": "12345678",
"image": "https://media.rightmove.co.uk/property-photo/.../12345678.jpg",
"price": 500000,
"price_frequency": "monthly",
"price_text": "£500,000",
"property_type": "Semi-detached",
"receptions": 2,
"size": "538 sq. ft.",
"status": "For Sale",
"tenure": "LEASEHOLD",
"title": "3 bedroom semi-detached house for sale",
"url": "https://www.rightmove.co.uk/properties/12345678"
}
],
"total": 1245
}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.
Search Rightmove's new-homes-for-sale listings for a location, with price, bedroom, bathroom, and property-type filters. Results are individual new-build homes and plots (with development flags), not development-level cards.
{
"location": "REGION^87490",
"page": 1,
"results": [
{
"added_or_reduced": "Price reduced",
"address": "123 Example Street, London",
"bathrooms": 2,
"bedrooms": 3,
"currency": "GBP",
"days_on_market": 14,
"development": true,
"id": "12345678",
"image": "https://media.rightmove.co.uk/property-photo/.../12345678.jpg",
"price": 500000,
"price_frequency": "monthly",
"price_text": "£500,000",
"property_type": "Semi-detached",
"receptions": 2,
"size": "538 sq. ft.",
"status": "For Sale",
"tenure": "LEASEHOLD",
"title": "3 bedroom semi-detached house for sale",
"url": "https://www.rightmove.co.uk/properties/12345678"
}
],
"total": 1245
}curl "https://api.crawlora.net/api/v1/rightmove/new-homes/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"