Endpoint Playground
Test Crawlora's Rightmove Estate Agent Branch Detail 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/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Rightmove agent branch id |
{
"address": "18 Pilgrimage Street,\nLondon Bridge,\nLondon,\nSE1 4LL",
"branch_name": "London",
"brand_name": "1 Ability Estate Agents",
"build_to_rent": true,
"commercial": true,
"company_id": "4294",
"company_name": "1st Avenue",
"description": "sample",
"development": true,
"display_name": "1 Ability Estate Agents, London",
"id": "181787",
"industry_affiliations": [
{
"id": 19,
"image_url": "https://example.com/resource",
"name": "Property Redress Scheme"
}
],
"latitude": 1.23,
"lettings": true,
"lettings_properties": {
"properties": [
{
"address": "West Parkside, London, SE10",
"bathrooms": 2,
"bedrooms": 2,
"channel": "RES_LET",
"id": "92527095",
"image": "sample",
"price": 634,
"price_frequency": "weekly",
"price_text": "£634 pw",
"property_type": "Flat",
"status": "available",
"url": "https://www.rightmove.co.uk/properties/92537946#/?channel=RES_LET"
}
],
"total": 37
},
"lettings_telephone": "020 3910 6304",
"logo_url": "https://example.com/resource",
"longitude": 1.23,
"main_telephone": "020 8293 8600",
"overseas": true,
"postcode": "SE1 4LL",
"sales": true,
"sales_properties": {
"properties": [
{
"address": "West Parkside, London, SE10",
"bathrooms": 2,
"bedrooms": 2,
"channel": "RES_LET",
"id": "92527095",
"image": "sample",
"price": 634,
"price_frequency": "weekly",
"price_text": "£634 pw",
"property_type": "Flat",
"status": "available",
"url": "https://www.rightmove.co.uk/properties/92537946#/?channel=RES_LET"
}
],
"total": 37
},
"sales_telephone": "020 3909 6734"
}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 one estate-agent branch profile from Rightmove, including address, telephones, service flags, industry affiliations, and the branch's own sales and lettings listing previews. The slug segments in Rightmove agent URLs are cosmetic; the branch resolves by numeric id alone.
{
"address": "18 Pilgrimage Street,\nLondon Bridge,\nLondon,\nSE1 4LL",
"branch_name": "London",
"brand_name": "1 Ability Estate Agents",
"build_to_rent": true,
"commercial": true,
"company_id": "4294",
"company_name": "1st Avenue",
"description": "sample",
"development": true,
"display_name": "1 Ability Estate Agents, London",
"id": "181787",
"industry_affiliations": [
{
"id": 19,
"image_url": "https://example.com/resource",
"name": "Property Redress Scheme"
}
],
"latitude": 1.23,
"lettings": true,
"lettings_properties": {
"properties": [
{
"address": "West Parkside, London, SE10",
"bathrooms": 2,
"bedrooms": 2,
"channel": "RES_LET",
"id": "92527095",
"image": "sample",
"price": 634,
"price_frequency": "weekly",
"price_text": "£634 pw",
"property_type": "Flat",
"status": "available",
"url": "https://www.rightmove.co.uk/properties/92537946#/?channel=RES_LET"
}
],
"total": 37
},
"lettings_telephone": "020 3910 6304",
"logo_url": "https://example.com/resource",
"longitude": 1.23,
"main_telephone": "020 8293 8600",
"overseas": true,
"postcode": "SE1 4LL",
"sales": true,
"sales_properties": {
"properties": [
{
"address": "West Parkside, London, SE10",
"bathrooms": 2,
"bedrooms": 2,
"channel": "RES_LET",
"id": "92527095",
"image": "sample",
"price": 634,
"price_frequency": "weekly",
"price_text": "£634 pw",
"property_type": "Flat",
"status": "available",
"url": "https://www.rightmove.co.uk/properties/92537946#/?channel=RES_LET"
}
],
"total": 37
},
"sales_telephone": "020 3909 6734"
}curl "https://api.crawlora.net/api/v1/rightmove/agents/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"