Endpoint Playground
Test Crawlora's Rightmove Property 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/properties/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Rightmove property ID |
{
"code": 200,
"msg": "OK",
"data": {
"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,
"description": "A beautifully presented three bedroom semi-detached house situated in a popular residential location. The property offers spacious accommodation throughout and benefits from being presented to the market with no onward chain.",
"features": [
"Three double bedrooms",
"Modern family bathroom",
"Spacious lounge/diner",
"Fitted kitchen",
"Rear garden",
"Off street parking"
],
"floor_plan": "https://www.rightmove.co.uk/media/property/floorplans/12345678.pdf",
"epc_rating": "C",
"council_tax_band": "D",
"tenure": "Freehold",
"available_from": "Immediate",
"customer_reviews": {
"count": 5,
"average_score": 4.5,
"latest_review": "Great property and excellent service from the agent. Highly recommended!"
},
"nearby_schools": [
{
"name": "St. Mary's Primary School",
"type": "Primary",
"distance": "0.2 miles",
"rating": "Outstanding"
},
{
"name": "London Comprehensive School",
"type": "Secondary",
"distance": "0.5 miles",
"rating": "Good"
}
]
}
}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 details using the property ID.
{
"code": 200,
"msg": "OK",
"data": {
"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,
"description": "A beautifully presented three bedroom semi-detached house situated in a popular residential location. The property offers spacious accommodation throughout and benefits from being presented to the market with no onward chain.",
"features": [
"Three double bedrooms",
"Modern family bathroom",
"Spacious lounge/diner",
"Fitted kitchen",
"Rear garden",
"Off street parking"
],
"floor_plan": "https://www.rightmove.co.uk/media/property/floorplans/12345678.pdf",
"epc_rating": "C",
"council_tax_band": "D",
"tenure": "Freehold",
"available_from": "Immediate",
"customer_reviews": {
"count": 5,
"average_score": 4.5,
"latest_review": "Great property and excellent service from the agent. Highly recommended!"
},
"nearby_schools": [
{
"name": "St. Mary's Primary School",
"type": "Primary",
"distance": "0.2 miles",
"rating": "Outstanding"
},
{
"name": "London Comprehensive School",
"type": "Secondary",
"distance": "0.5 miles",
"rating": "Good"
}
]
}
}curl "https://api.crawlora.net/api/v1/rightmove/properties/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"