Endpoint Playground
Test Crawlora's Rightmove Autocomplete 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/autocomplete?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Location query | |
| limit | integer | No | Maximum results, clamped to 20 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "London",
"results": [
{
"id": "REGION^12345",
"name": "London, Greater London",
"full_name": "London, Greater London, England",
"entity_type": "REGION"
}
]
}
}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 web autocomplete candidates for location search.
{
"code": 200,
"msg": "OK",
"data": {
"query": "London",
"results": [
{
"id": "REGION^12345",
"name": "London, Greater London",
"full_name": "London, Greater London, England",
"entity_type": "REGION"
}
]
}
}curl "https://api.crawlora.net/api/v1/rightmove/autocomplete?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"