Skip to main content
POST
/
api
/
rightmove
/
properties
/rightmove/properties
curl --request POST \
  --url https://api.anysite.io/api/rightmove/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "property": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@rightmove_property",
    "url": "<string>",
    "display_address": "<string>",
    "outcode": "<string>",
    "incode": "<string>",
    "country": "<string>",
    "latitude": 123,
    "longitude": 123,
    "transaction_type": "<string>",
    "channel": "<string>",
    "property_sub_type": "<string>",
    "property_phrase": "<string>",
    "bedroom_count": 123,
    "bathroom_count": 123,
    "price": 123,
    "display_price": "<string>",
    "price_qualifier": "<string>",
    "secondary_price": "<string>",
    "price_per_sqft": "<string>",
    "let_available_date": "<string>",
    "deposit": 123,
    "let_type": "<string>",
    "furnish_type": "<string>",
    "minimum_term_months": 123,
    "description": "<string>",
    "key_features": [],
    "image": "<string>",
    "images": [],
    "floorplans": [],
    "virtual_tours": [],
    "brochures": [],
    "epc_graphs": [],
    "size_min_sqft": 123,
    "size_max_sqft": 123,
    "size_min_sqm": 123,
    "size_max_sqm": 123,
    "tenure_type": "<string>",
    "years_remaining_on_lease": 123,
    "council_tax_band": "<string>",
    "annual_ground_rent": 123,
    "annual_service_charge": 123,
    "nearest_stations": [],
    "listed_at": "<string>",
    "is_published": true,
    "is_archived": true,
    "is_premium": true,
    "contact_phone": "<string>",
    "agent": {
      "@type": "@rightmove_property_agent",
      "branch_id": 123,
      "branch_name": "<string>",
      "branch_display_name": "<string>",
      "company_name": "<string>",
      "company_trading_name": "<string>",
      "display_address": "<string>",
      "phone": "<string>",
      "image": "<string>",
      "description": "<string>",
      "profile_url": "<string>",
      "properties_url": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
property
string
required

Rightmove property ID or a property URL containing it

Minimum string length: 1
Examples:

"174838280"

"https://www.rightmove.co.uk/properties/174838280"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@rightmove_property
url
string | null
display_address
string | null
outcode
string | null
incode
string | null
country
string | null
latitude
number | null
longitude
number | null
transaction_type
string | null
channel
string | null
property_sub_type
string | null
property_phrase
string | null
bedroom_count
integer | null
bathroom_count
integer | null
price
integer | null
display_price
string | null
price_qualifier
string | null
secondary_price
string | null
price_per_sqft
string | null
let_available_date
string | null
deposit
integer | null
let_type
string | null
furnish_type
string | null
minimum_term_months
integer | null
description
string | null
key_features
string[]
image
string | null
images
string[]
floorplans
string[]
virtual_tours
string[]
brochures
string[]
epc_graphs
string[]
size_min_sqft
number | null
size_max_sqft
number | null
size_min_sqm
number | null
size_max_sqm
number | null
tenure_type
string | null
years_remaining_on_lease
integer | null
council_tax_band
string | null
annual_ground_rent
number | null
annual_service_charge
number | null
nearest_stations
RightmoveStation · object[]
listed_at
string | null
is_published
boolean | null
is_archived
boolean | null
is_premium
boolean | null
contact_phone
string | null
agent
RightmovePropertyAgent · object