Endpoint Playground
Test Crawlora's Rightmove 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/search?location=<location>&status=for_sale" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | Yes | Display location; e.g. London, Manchester | |
| page | integer | No | 1-based page | |
| status | string | No | for_sale | Listing status. Allowed values: for_sale (aliases sale, for-sale), to_let (aliases let, to-let), sold |
| min_price | integer | No | Minimum price filter in GBP | |
| max_price | integer | No | Maximum price filter in GBP | |
| min_bedrooms | integer | No | Minimum bedrooms filter | |
| max_bedrooms | integer | No | Maximum bedrooms filter | |
| min_bathrooms | number | No | Minimum bathrooms filter | |
| max_bathrooms | number | No | Maximum bathrooms filter | |
| property_type | string | No | Property type filter (detached, semi-detached, flat, terrace, bungalow) |
{
"code": 200,
"msg": "OK",
"data": {
"location": "London",
"page": 1,
"total": 1245,
"results": [
{
"id": "12345678",
"title": "3 bedroom semi-detached house for sale",
"address": "123 Example Street, London",
"url": "https://www.rightmove.co.uk/properties/12345678",
"image": "https://media.rightmove.co.uk/property-photo/a092de1f4/12345678/a092de1f4d5794977b5173a79d5c2d56.jpg",
"price": 500000,
"price_text": "£500,000",
"currency": "GBP",
"bedrooms": 3,
"bathrooms": 2,
"receptions": 2,
"property_type": "Semi-detached",
"status": "For Sale",
"added_or_reduced": "Price reduced",
"days_on_market": 14
}
]
}
}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 normalized Rightmove public property search results. Callers can use location query directly or pass a location identifier from autocomplete results.
{
"code": 200,
"msg": "OK",
"data": {
"location": "London",
"page": 1,
"total": 1245,
"results": [
{
"id": "12345678",
"title": "3 bedroom semi-detached house for sale",
"address": "123 Example Street, London",
"url": "https://www.rightmove.co.uk/properties/12345678",
"image": "https://media.rightmove.co.uk/property-photo/a092de1f4/12345678/a092de1f4d5794977b5173a79d5c2d56.jpg",
"price": 500000,
"price_text": "£500,000",
"currency": "GBP",
"bedrooms": 3,
"bathrooms": 2,
"receptions": 2,
"property_type": "Semi-detached",
"status": "For Sale",
"added_or_reduced": "Price reduced",
"days_on_market": 14
}
]
}
}curl "https://api.crawlora.net/api/v1/rightmove/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"