Endpoint Playground
Test Crawlora's Rightmove Estate Agent Directory 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/agents?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | Yes | Rightmove location identifier from autocomplete (numeric location id required) | |
| page | integer | No | Result page (default 1) |
{
"location": "REGION^87490",
"page": 1,
"results": [
{
"address": "18 Pilgrimage Street,\nLondon Bridge,\nLondon,\nSE1 4LL",
"brand_name": "1 Ability Estate Agents",
"description": "sample",
"display_name": "1 Ability Estate Agents, London",
"id": "181787",
"lettings": true,
"logo_url": "https://media.rightmove.co.uk/partner-logo/19103090-LOGO-1765975389.png",
"sales": true,
"telephones": [
{
"direct_number": "020 3903 2323",
"number": "020 3910 6304",
"type": "LETTING"
}
],
"url": "https://www.rightmove.co.uk/estate-agents/agent/1-Ability-Estate-Agents/London-181787.html"
}
],
"total": 3614
}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.
Lists estate-agent branches from Rightmove's estate-agents directory for a location, with branch display name, brand, address, telephones, sales/lettings flags, logo, and a link to the branch profile. 20 agents per page.
{
"location": "REGION^87490",
"page": 1,
"results": [
{
"address": "18 Pilgrimage Street,\nLondon Bridge,\nLondon,\nSE1 4LL",
"brand_name": "1 Ability Estate Agents",
"description": "sample",
"display_name": "1 Ability Estate Agents, London",
"id": "181787",
"lettings": true,
"logo_url": "https://media.rightmove.co.uk/partner-logo/19103090-LOGO-1765975389.png",
"sales": true,
"telephones": [
{
"direct_number": "020 3903 2323",
"number": "020 3910 6304",
"type": "LETTING"
}
],
"url": "https://www.rightmove.co.uk/estate-agents/agent/1-Ability-Estate-Agents/London-181787.html"
}
],
"total": 3614
}curl "https://api.crawlora.net/api/v1/rightmove/agents?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"