Endpoint Playground
Test Crawlora's Rightmove Commercial Property 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/commercial/search?location=<location>&status=buy" \
-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) | |
| status | string | No | buy | Listing status (default buy) |
| 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_size | integer | No | Minimum floor area in square feet | |
| max_size | integer | No | Maximum floor area in square feet | |
| property_type | string | No | Commercial property type filter (e.g. office, retail, industrial, warehouse, land, hotel, leisure) |
{
"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 commercial property listings for sale or to let, with price, floor-area (sq ft), and commercial-property-type filters. For to-let listings the price amount follows the listing's own frequency (monthly or yearly).
{
"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/commercial/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"