{
  "openapi": "3.0.1",
  "info": {
    "title": "Rightmove $0.95💰Buy-Rent-Sell-House-Agent-Commercial-Overseas",
    "description": "💰 $0.95 per 1,000 results. Scrape Rightmove for sales, rentals, agents & sold prices. Extract 100+ data points per listing: historic pricing (price & year of past sales), price changes, images & floor plans. Fast, powerful scraper to monitor market trends and full property histories.",
    "version": "0.0",
    "x-build-id": "mAuWeZ9ga6Xa66E0j"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/memo23~rightmove-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-memo23-rightmove-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/memo23~rightmove-scraper/runs": {
      "post": {
        "operationId": "runs-sync-memo23-rightmove-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/memo23~rightmove-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-memo23-rightmove-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Paste Rightmove search URLs, estate agent URLs, house prices URLs, commercial URLs, overseas URLs, or direct property URLs.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "searchMode": {
            "title": "Search Mode",
            "enum": [
              "propertySale",
              "propertyRent",
              "estateAgents",
              "commercialSale",
              "commercialRent",
              "housePrices",
              "overseasSale",
              "overseasRent"
            ],
            "type": "string",
            "description": "Choose what type of Rightmove search to build from the filter fields below. House prices needs searchOutcodeOrPostcode. Overseas needs searchCountry.",
            "default": "propertySale"
          },
          "searchLocation": {
            "title": "Search Location",
            "type": "string",
            "description": "Friendly location label such as London, Canary Wharf, or NW3. Starter default is London. For property sale/rent, estate agents, and commercial, the actor will try to resolve this automatically into a Rightmove location identifier when searchLocationIdentifier is empty. Explicit searchLocationIdentifier is still more reliable.",
            "default": "London"
          },
          "searchLocationIdentifier": {
            "title": "Location Identifier (preferred explicit value)",
            "type": "string",
            "description": "Preferred explicit Rightmove identifier for residential sale/rent, estate agents, and commercial modes. Starter default is REGION^87490 for London. If left empty, the actor will try to resolve it from searchLocation. Use the full format, not a bare numeric ID. Examples: REGION^87490 for London, OUTCODE^1859 for NW3, POSTCODE^4812813 for E14 0XG, STATION^5462 for Leeds Station.",
            "default": "REGION^87490"
          },
          "searchRadius": {
            "title": "Search Radius",
            "enum": [
              "0.0",
              "0.25",
              "0.5",
              "1.0",
              "3.0",
              "5.0",
              "10.0",
              "15.0",
              "20.0",
              "40.0"
            ],
            "type": "string",
            "description": "Rightmove radius value. Starter default is 15.0. Common examples: 0.0, 0.25, 0.5, 1.0, 3.0, 5.0, 10.0.",
            "default": "15.0"
          },
          "searchMinPrice": {
            "title": "Minimum Price",
            "type": "string",
            "description": "Used for property sale, property rent, commercial, and overseas modes."
          },
          "searchMaxPrice": {
            "title": "Maximum Price",
            "type": "string",
            "description": "Used for property sale, property rent, commercial, and overseas modes. Starter default is 500000.",
            "default": "500000"
          },
          "searchMinBedrooms": {
            "title": "Minimum Bedrooms",
            "type": "string",
            "description": "Used for residential and overseas property modes."
          },
          "searchMaxBedrooms": {
            "title": "Maximum Bedrooms",
            "type": "string",
            "description": "Used for residential and overseas property modes."
          },
          "searchPropertyTypes": {
            "title": "Property Types",
            "type": "array",
            "description": "Optional. Multiple values will be joined with commas into Rightmove's propertyTypes parameter.",
            "items": {
              "type": "string"
            }
          },
          "searchMustHave": {
            "title": "Must Have Filters",
            "type": "array",
            "description": "Optional. Multiple values will be joined into Rightmove's mustHave parameter.",
            "items": {
              "type": "string"
            }
          },
          "searchDontShow": {
            "title": "Do Not Show",
            "type": "array",
            "description": "Optional. Multiple values will be joined into Rightmove's dontShow parameter.",
            "items": {
              "type": "string"
            }
          },
          "searchKeywords": {
            "title": "Keywords",
            "type": "string",
            "description": "Optional keyword filter where Rightmove supports it."
          },
          "searchIncludeSSTC": {
            "title": "Include SSTC",
            "type": "boolean",
            "description": "For residential property sale mode.",
            "default": false
          },
          "searchIncludeLetAgreed": {
            "title": "Include Let Agreed",
            "type": "boolean",
            "description": "For residential property rent mode.",
            "default": false
          },
          "searchFurnishTypes": {
            "title": "Furnish Types",
            "type": "array",
            "description": "For residential property rent mode.",
            "items": {
              "type": "string"
            }
          },
          "searchLetType": {
            "title": "Let Type",
            "type": "string",
            "description": "For residential property rent mode. Example: shortTerm."
          },
          "searchBrandName": {
            "title": "Brand / Agent Name",
            "type": "string",
            "description": "For estate agent mode."
          },
          "searchBranchType": {
            "title": "Branch Type",
            "enum": [
              "ALL",
              "SALES",
              "LETTINGS",
              "COMMERCIAL"
            ],
            "type": "string",
            "description": "For estate agent mode.",
            "default": "ALL"
          },
          "searchDisplayPropertyType": {
            "title": "Commercial Display Property Type",
            "enum": [
              "industrial_warehousing",
              "offices",
              "retail",
              "leisure",
              "land",
              "other_commercial"
            ],
            "type": "string",
            "description": "For commercial modes. This maps to Rightmove's frontend displayPropertyType before pagination converts it to propertyTypes."
          },
          "searchOutcodeOrPostcode": {
            "title": "Outcode or Postcode",
            "type": "string",
            "description": "Required for house prices mode. This is the minimum targeting field for house prices and is not defaulted. Example: NW3 or W9 2BA."
          },
          "searchSoldIn": {
            "title": "Sold In",
            "type": "string",
            "description": "For house prices mode. Defaults to 1.",
            "default": "1"
          },
          "searchPropertyType": {
            "title": "House Prices Property Type",
            "type": "string",
            "description": "For house prices mode. Example: FLAT, DETACHED, SEMI_DETACHED."
          },
          "searchTenure": {
            "title": "Tenure",
            "type": "string",
            "description": "For house prices mode. Example: LEASEHOLD or FREEHOLD."
          },
          "searchCountry": {
            "title": "Country",
            "type": "string",
            "description": "Required for overseas modes. This is the minimum targeting field for overseas searches and is not defaulted. Example: Portugal, Spain, or France."
          },
          "searchSort": {
            "title": "Sort Type",
            "type": "string",
            "description": "Optional Rightmove sortType value. Starter default is 2. Example values often seen in live URLs are 2 and 6.",
            "default": "2"
          },
          "moreDetails": {
            "title": "Fetch More Details",
            "type": "boolean",
            "description": "If enabled, makes an additional request to the property page to fetch extra details not available from the mobile API.",
            "default": false
          },
          "includeSaleHistory": {
            "title": "Include Property Sale History",
            "type": "boolean",
            "description": "If enabled, makes an additional request to fetch the property sale history when supported.",
            "default": false
          },
          "maxItems": {
            "title": "Maximum Items",
            "type": "integer",
            "description": "Maximum number of items that will be scraped.",
            "default": 10000
          },
          "monitoringMode": {
            "title": "Monitoring Mode",
            "type": "boolean",
            "description": "If checked, it will only scrape newly listed properties compared to previous runs.",
            "default": false
          },
          "maxConcurrency": {
            "title": "Max Concurrency",
            "type": "integer",
            "description": "Maximum number of pages that can be processed at the same time.",
            "default": 10
          },
          "minConcurrency": {
            "title": "Min Concurrency",
            "type": "integer",
            "description": "Minimum number of pages that will be processed at the same time.",
            "default": 1
          },
          "maxRequestRetries": {
            "title": "Max Request Retries",
            "type": "integer",
            "description": "Number of times the crawler will retry a failed request before giving up.",
            "default": 100
          },
          "proxy": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Specifies proxy servers that will be used by the scraper in order to hide its origin.<br><br>For details, see <a href='https://apify.com/apify/web-scraper#proxy-configuration' target='_blank' rel='noopener'>Proxy configuration</a> in README.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ]
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}