Rightmove API

Rightmove homes for sale

Homes for sale in an area: address, type, bedrooms, price and its label, agent, photos, position and when it was listed; the portal's featured homes beside them.

Endpoint

GET/v1/rightmove/search-salelive · proven3 credits
Try in Playground

Parameters

Query parameters

NameRequiredDescriptionExample
locationnoA postcode, town or area name; resolved to the portal's identifier once and remembered (or pass identifier)SW3
identifiernoAn area identifier from rightmove/locationsREGION^87490
pagenoPage number1
limitnoResults per page, 1 to 10025
radiusnoMiles around the area: 0, 0.25, 0.5, 1, 3, 5, 10, 15, 20, 30 or 401
min_pricenoMinimum asking price in pounds
max_pricenoMaximum asking price in pounds
min_bedroomsnoMinimum bedrooms
max_bedroomsnoMaximum bedrooms
property_typenodetached, semi-detached, terraced, flat, bungalow, land, park-home; several separated by commasflat,terraced
sortnonewest, oldest, highest_price or lowest_pricenewest
keywordsnoWords to prioritise, separated by commasgarden
must_havenogarden, parking, newHome, retirement, sharedOwnership, auction; separated by commas
dont_shownonewHome, retirement, sharedOwnership, auction; separated by commas
include_soldnoInclude homes sold subject to contractfalse
addednoOnly homes added in the last 1, 3, 7 or 14 days
dry_runnoRead a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution.1

Examples

Make the request

curl
curl "https://www.monocrawl.com/v1/rightmove/search-sale" \
  -H "x-api-key: mn_your_key_here"
TypeScript
typescript
const key = process.env.MONOCRAWL_API_KEY;
if (!key) throw new Error('Set MONOCRAWL_API_KEY on your server.');
const res = await fetch(
  "https://www.monocrawl.com/v1/rightmove/search-sale",
  { headers: { "x-api-key": key } },
);
const body = await res.json();

if (!body.success) {
  // one error shape for every endpoint — see /docs/errors
  throw new Error(`${body.error.type}: ${body.error.message}`);
}

console.log(body.data, "credits left:", body.credits_remaining);
Python
python
import os
import requests

res = requests.get(
    "https://www.monocrawl.com/v1/rightmove/search-sale",
    headers={"x-api-key": os.environ["MONOCRAWL_API_KEY"]},
    timeout=60,
)
body = res.json()

if not body["success"]:
    # one error shape for every endpoint — see /docs/errors
    raise RuntimeError(f"{body['error']['type']}: {body['error']['message']}")

print(body["data"], "credits left:", body["credits_remaining"])

Response

Response fields and example

This example is illustrative, not a captured live response. Variable-cost operations may settle a charge different from the list price below. A successful response puts the platform payload in data and reports the exact credits used, remaining balance, request id and cache status beside it.

200 · application/json
{
  "success": true,
  "platform": "rightmove",
  "endpoint": "/v1/rightmove/search-sale",
  "data": {
    "channel": "example",
    "count": 0,
    "cursor": null,
    "featured": [
      {
        "address": "example",
        "agent": {
          "branch": "example",
          "development": false,
          "id": "example",
          "logo_url": "https://example.com/example",
          "name": "example",
          "phone": "example"
        },
        "bedrooms": 0,
        "build_to_rent": false,
        "development": false,
        "featured": false,
        "floorplan_count": 0,
        "has_video": false,
        "id": "example",
        "image_url": "https://example.com/example",
        "images": [
          "example"
        ],
        "keywords": [],
        "latitude": 0,
        "listed_at": "2026-09-01T12:00:00Z",
        "listing_update": "2026-09-01T12:00:00Z",
        "longitude": 0,
        "online_viewing": false,
        "photo_count": 0,
        "platform": "example",
        "premium": false,
        "price": 0,
        "price_label": "example",
        "price_labels": [
          "example"
        ],
        "property_type": "example",
        "summary": "example",
        "type": "example",
        "update_reason": "2026-09-01T12:00:00Z",
        "updated_at": "2026-09-01T12:00:00Z",
        "url": "https://example.com/example"
      }
    ],
    "has_more": false,
    "items": [
      {
        "address": "example",
        "agent": {
          "branch": "example",
          "development": false,
          "id": "example",
          "logo_url": "https://example.com/example",
          "name": "example",
          "phone": "example"
        },
        "bedrooms": 0,
        "build_to_rent": false,
        "development": false,
        "featured": false,
        "floorplan_count": 0,
        "has_video": false,
        "id": "example",
        "image_url": "https://example.com/example",
        "images": [
          "example"
        ],
        "keywords": [],
        "latitude": 0,
        "listed_at": "2026-09-01T12:00:00Z",
        "listing_update": "2026-09-01T12:00:00Z",
        "longitude": 0,
        "online_viewing": false,
        "photo_count": 0,
        "platform": "example",
        "premium": false,
        "price": 0,
        "price_label": "example",
        "price_labels": [
          "example"
        ],
        "price_qualifier": "example",
        "property_type": "example",
        "sticker": "example",
        "summary": "example",
        "type": "example",
        "update_reason": "2026-09-01T12:00:00Z",
        "updated_at": "2026-09-01T12:00:00Z",
        "url": "https://example.com/example"
      }
    ],
    "location": {
      "identifier": "example",
      "latitude": 0,
      "longitude": 0,
      "name": "example"
    },
    "page": 0,
    "radius_miles": 0,
    "total": 0
  },
  "credits_used": 3,
  "credits_remaining": 99,
  "request_id": "req_…",
  "cached": false
}

The example is illustrative and shows a documented subset of data. The fields below are optional across supported sources; nullable fields can also be absent. Preserve unknown values and accept additional fields.

Schema basis: observed response shapes, not an exhaustive field specification. See schema coverage and validation limits.

Download the data JSON Schema. Validate response.data, not the whole envelope. A valid shape does not establish that every field or source record was returned.

Field inside dataTypeMeaning
channelstring | nullOptional channel supplied by this operation. Null means unknown.
countnumber | nullNumber of records in this response, not lifetime or total matches.
cursorstring | nullOpaque next-page token; pass it back unchanged. Null does not prove complete history.
featuredarray | nullOptional featured supplied by this operation. Null means unknown.
featured[].addressstring | nullOptional address supplied by this operation. Null means unknown.
featured[].agentobject | nullOptional agent supplied by this operation. Null means unknown.
featured[].agent.branchstring | nullOptional branch supplied by this operation. Null means unknown.
featured[].agent.developmentboolean | nullOptional development supplied by this operation. Null means unknown.
featured[].agent.idstring | nullSource identifier. Preserve the supplied type and exact value.
featured[].agent.logo_urlstring | nullOptional logo url supplied by this operation. Null means unknown.
featured[].agent.namestring | nullOptional name supplied by this operation. Null means unknown.
featured[].agent.phonestring | nullOptional phone supplied by this operation. Null means unknown.
featured[].bedroomsnumber | nullOptional bedrooms supplied by this operation. Null means unknown.
featured[].build_to_rentboolean | nullOptional build to rent supplied by this operation. Null means unknown.
featured[].developmentboolean | nullOptional development supplied by this operation. Null means unknown.
featured[].featuredboolean | nullOptional featured supplied by this operation. Null means unknown.
featured[].floorplan_countnumber | nullOptional floorplan count supplied by this operation. Null means unknown.
featured[].has_videoboolean | nullOptional has video supplied by this operation. Null means unknown.
featured[].idstring | nullSource identifier. Preserve the supplied type and exact value.
featured[].image_urlstring | nullOptional image url supplied by this operation. Null means unknown.
featured[].imagesarray | nullOptional images supplied by this operation. Null means unknown.
featured[].keywordsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
featured[].latitudenumber | nullOptional latitude supplied by this operation. Null means unknown.
featured[].listed_atstring | nullOptional listed at supplied by this operation. Null means unknown.
featured[].listing_updatestring | nullOptional listing update supplied by this operation. Null means unknown.
featured[].longitudenumber | nullOptional longitude supplied by this operation. Null means unknown.
featured[].online_viewingboolean | nullOptional online viewing supplied by this operation. Null means unknown.
featured[].photo_countnumber | nullOptional photo count supplied by this operation. Null means unknown.
featured[].platformstring | nullOptional platform supplied by this operation. Null means unknown.
featured[].premiumboolean | nullOptional premium supplied by this operation. Null means unknown.
featured[].pricenumber | nullSource price. Currency, taxes and availability depend on the listing.
featured[].price_labelstring | nullOptional price label supplied by this operation. Null means unknown.
featured[].price_labelsarray | nullOptional price labels supplied by this operation. Null means unknown.
featured[].property_typestring | nullOptional property type supplied by this operation. Null means unknown.
featured[].summarystring | nullOptional summary supplied by this operation. Null means unknown.
featured[].typestring | nullOptional type supplied by this operation. Null means unknown.
featured[].update_reasonstring | nullOptional update reason supplied by this operation. Null means unknown.
featured[].updated_atstring | nullOptional updated at supplied by this operation. Null means unknown.
featured[].urlstring | nullOriginal source URL when supplied.
has_moreboolean | nullSource continuation indicator; null means unknown.
itemsarray | nullReturned records. Source coverage and completeness vary.
items[].addressstring | nullOptional address supplied by this operation. Null means unknown.
items[].agentobject | nullOptional agent supplied by this operation. Null means unknown.
items[].agent.branchstring | nullOptional branch supplied by this operation. Null means unknown.
items[].agent.developmentboolean | nullOptional development supplied by this operation. Null means unknown.
items[].agent.idstring | nullSource identifier. Preserve the supplied type and exact value.
items[].agent.logo_urlstring | nullOptional logo url supplied by this operation. Null means unknown.
items[].agent.namestring | nullOptional name supplied by this operation. Null means unknown.
items[].agent.phonestring | nullOptional phone supplied by this operation. Null means unknown.
items[].bedroomsnumber | nullOptional bedrooms supplied by this operation. Null means unknown.
items[].build_to_rentboolean | nullOptional build to rent supplied by this operation. Null means unknown.
items[].developmentboolean | nullOptional development supplied by this operation. Null means unknown.
items[].featuredboolean | nullOptional featured supplied by this operation. Null means unknown.
items[].floorplan_countnumber | nullOptional floorplan count supplied by this operation. Null means unknown.
items[].has_videoboolean | nullOptional has video supplied by this operation. Null means unknown.
items[].idstring | nullSource identifier. Preserve the supplied type and exact value.
items[].image_urlstring | nullOptional image url supplied by this operation. Null means unknown.
items[].imagesarray | nullOptional images supplied by this operation. Null means unknown.
items[].keywordsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
items[].latitudenumber | nullOptional latitude supplied by this operation. Null means unknown.
items[].listed_atstring | nullOptional listed at supplied by this operation. Null means unknown.
items[].listing_updatestring | nullOptional listing update supplied by this operation. Null means unknown.
items[].longitudenumber | nullOptional longitude supplied by this operation. Null means unknown.
items[].online_viewingboolean | nullOptional online viewing supplied by this operation. Null means unknown.
items[].photo_countnumber | nullOptional photo count supplied by this operation. Null means unknown.
items[].platformstring | nullOptional platform supplied by this operation. Null means unknown.
items[].premiumboolean | nullOptional premium supplied by this operation. Null means unknown.
items[].pricenumber | nullSource price. Currency, taxes and availability depend on the listing.
items[].price_labelstring | nullOptional price label supplied by this operation. Null means unknown.
items[].price_labelsarray | nullOptional price labels supplied by this operation. Null means unknown.
items[].price_qualifierstring | nullOptional price qualifier supplied by this operation. Null means unknown.
items[].property_typestring | nullOptional property type supplied by this operation. Null means unknown.
items[].stickerstring | nullOptional sticker supplied by this operation. Null means unknown.
items[].summarystring | nullOptional summary supplied by this operation. Null means unknown.
items[].typestring | nullOptional type supplied by this operation. Null means unknown.
items[].update_reasonstring | nullOptional update reason supplied by this operation. Null means unknown.
items[].updated_atstring | nullOptional updated at supplied by this operation. Null means unknown.
items[].urlstring | nullOriginal source URL when supplied.
locationobject | nullOptional location supplied by this operation. Null means unknown.
location.identifierstring | nullOptional identifier supplied by this operation. Null means unknown.
location.latitudenumber | nullOptional latitude supplied by this operation. Null means unknown.
location.longitudenumber | nullOptional longitude supplied by this operation. Null means unknown.
location.namestring | nullOptional name supplied by this operation. Null means unknown.
pagenumber | nullOptional page supplied by this operation. Null means unknown.
radius_milesnumber | nullOptional radius miles supplied by this operation. Null means unknown.
totalnumber | nullSource-reported total; null is unknown.

Optional fields reviewed from preserved successful responses. Additive fields and source variations remain allowed; validate the fields your workflow requires.

The example is invented and illustrates types only; zero and empty values are not claims about a real result.

Failures use the typed error envelope. A confirmed uncharged or refunded failure reports zero; a pending reconciliation can report an unknown charge. Read credits_used and error.details.billing_status, and keep request_id for recovery. Response contract · Error reference

First call in under a minute

1,000 monthly free credits and a ready-made key the moment you sign up. No card.