> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapeunblocker.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Scrape Rightmove property listings

> Searches Rightmove (the UK's largest property portal) for `location` and returns the listings as JSON: `address`, `price` (`amount` + `currency` + `display` + `frequency`), `transactionType`, `bedrooms`, `bathrooms`, `propertyType`, `summary`, `coordinates`, `images`, `agent` (name / branch / phone) and listing dates. Filter with `channel` (buy / rent), `min_price`/`max_price`, `min_bedrooms`/`max_bedrooms` and `property_type`, sort with `sort`, and collect up to `max_results` across pages.



## OpenAPI

````yaml /api-reference/openapi.json post /realestate/rightmove
openapi: 3.1.0
info:
  title: ScrapeUnblocker API
  description: >-
    Public API for the ScrapeUnblocker proxy/anti-bot service. Authenticate
    every request with the `x-scrapeunblocker-key` header. Three endpoints are
    documented here: page-source extraction, Google SERP scraping, and image
    fetch. All other paths exist for internal operations and are intentionally
    hidden from this spec.
  version: 3.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /realestate/rightmove:
    post:
      tags:
        - Plugins
      summary: Scrape Rightmove property listings
      description: >-
        Searches Rightmove (the UK's largest property portal) for `location` and
        returns the listings as JSON: `address`, `price` (`amount` + `currency`
        + `display` + `frequency`), `transactionType`, `bedrooms`, `bathrooms`,
        `propertyType`, `summary`, `coordinates`, `images`, `agent` (name /
        branch / phone) and listing dates. Filter with `channel` (buy / rent),
        `min_price`/`max_price`, `min_bedrooms`/`max_bedrooms` and
        `property_type`, sort with `sort`, and collect up to `max_results`
        across pages.
      operationId: rightmove_search_realestate_rightmove_post
      parameters:
        - name: location
          in: query
          required: true
          schema:
            type: string
            description: UK place name, e.g. 'London', 'Manchester', 'Milton Keynes'.
            title: Location
          description: UK place name, e.g. 'London', 'Manchester', 'Milton Keynes'.
        - name: channel
          in: query
          required: false
          schema:
            type: string
            description: buy (for sale) or rent (to rent).
            default: buy
            title: Channel
          description: buy (for sale) or rent (to rent).
        - name: min_price
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Minimum price (GBP).
            title: Min Price
          description: Minimum price (GBP).
        - name: max_price
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Maximum price (GBP).
            title: Max Price
          description: Maximum price (GBP).
        - name: min_bedrooms
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Minimum bedrooms.
            title: Min Bedrooms
          description: Minimum bedrooms.
        - name: max_bedrooms
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                minimum: 0
              - type: 'null'
            description: Maximum bedrooms.
            title: Max Bedrooms
          description: Maximum bedrooms.
        - name: property_type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Rightmove property types, comma-separated, e.g. 'flat,detached'.
            title: Property Type
          description: Rightmove property types, comma-separated, e.g. 'flat,detached'.
        - name: sort
          in: query
          required: false
          schema:
            type: string
            description: 'Ordering: relevance, newest, price_asc, price_desc, oldest.'
            default: relevance
            title: Sort
          description: 'Ordering: relevance, newest, price_asc, price_desc, oldest.'
        - name: max_results
          in: query
          required: false
          schema:
            type: integer
            maximum: 1008
            minimum: 1
            description: >-
              How many listings to collect across pages (~24 per page, max
              1008).
            default: 48
            title: Max Results
          description: How many listings to collect across pages (~24 per page, max 1008).
        - name: page
          in: query
          required: false
          schema:
            type: integer
            maximum: 42
            minimum: 1
            description: 1-based results page to start from.
            default: 1
            title: Page
          description: 1-based results page to start from.
        - name: proxy_country
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Exit-IP country (ISO-2). Leave blank for a smart exit.
            title: Proxy Country
          description: Exit-IP country (ISO-2). Leave blank for a smart exit.
      responses:
        '200':
          description: JSON with a `properties` array plus totals.
          content:
            application/json:
              schema: {}
        '400':
          description: Invalid parameters.
        '404':
          description: Location not found / no results page for it.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Blocked by Rightmove.
        '504':
          description: Fetch timed out.
      security:
        - ScrapeUnblockerKey: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ScrapeUnblockerKey:
      type: apiKey
      in: header
      name: x-scrapeunblocker-key
      description: Your ScrapeUnblocker API key. Apply on every request.

````