Endpoint Playground
Test Crawlora's Rightmove Student 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/student/search?location=<location>&furnish_type=furnished" \
-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 monthly rent in whole GBP units, not pence | |
| max_price | integer | No | Maximum monthly rent in whole GBP units, not pence | |
| min_bedrooms | integer | No | Minimum bedrooms | |
| max_bedrooms | integer | No | Maximum bedrooms | |
| furnish_type | string | No | furnished | Furnishing filter |
{
"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 student-accommodation listings for a location, with monthly-rent, bedroom, and furnishing filters. Prices are monthly rents in whole GBP units.
{
"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/student/search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"