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

# /rightmove/properties/search

> Search Rightmove properties for sale or to rent within a location. Returns property cards: id, url, address, summary, property sub-type, bedroom/bathroom counts, price, coordinates, images, tenure, listing dates and the marketing branch. Filter by radius, price range, bedrooms, property type and sort order.

**Price:** 10 credits per 25 results

**⚠️ Common errors:** 412: Location not found or no properties matched



## OpenAPI

````yaml /openapi/real-estate.json post /api/rightmove/properties/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/rightmove/properties/search:
    post:
      tags:
        - /rightmove
      summary: /rightmove/properties/search
      description: >-
        Search Rightmove properties for sale or to rent within a location.
        Returns property cards: id, url, address, summary, property sub-type,
        bedroom/bathroom counts, price, coordinates, images, tenure, listing
        dates and the marketing branch. Filter by radius, price range, bedrooms,
        property type and sort order.


        **Price:** 10 credits per 25 results


        **⚠️ Common errors:** 412: Location not found or no properties matched
      operationId: __api_rightmove_properties_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RightmovePropertiesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RightmoveSearchProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RightmovePropertiesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        location_id:
          type: string
          minLength: 3
        transaction_type:
          $ref: '#/components/schemas/RightmoveTransactionType'
        count:
          type: integer
          minimum: 1
        radius:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        min_bedrooms:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_bedrooms:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        property_type:
          anyOf:
            - $ref: '#/components/schemas/RightmovePropertyType'
            - type: 'null'
        sort:
          $ref: '#/components/schemas/RightmoveSortOrder'
          default: most_recent
      type: object
      required:
        - location_id
        - transaction_type
        - count
    RightmoveSearchProperty:
      properties:
        '@type':
          type: string
          default: RightmoveSearchProperty
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        display_address:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        property_sub_type:
          anyOf:
            - type: string
            - type: 'null'
        property_type_description:
          anyOf:
            - type: string
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        channel:
          anyOf:
            - type: string
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        display_price:
          anyOf:
            - type: string
            - type: 'null'
        price_qualifier:
          anyOf:
            - type: string
            - type: 'null'
        price_frequency:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        floorplan_count:
          anyOf:
            - type: integer
            - type: 'null'
        tenure_type:
          anyOf:
            - type: string
            - type: 'null'
        added_or_reduced:
          anyOf:
            - type: string
            - type: 'null'
        listing_update_reason:
          anyOf:
            - type: string
            - type: 'null'
        listing_update_date:
          anyOf:
            - type: string
            - type: 'null'
        first_visible_date:
          anyOf:
            - type: string
            - type: 'null'
        let_available_date:
          anyOf:
            - type: string
            - type: 'null'
        is_premium:
          anyOf:
            - type: boolean
            - type: 'null'
        is_featured:
          anyOf:
            - type: boolean
            - type: 'null'
        branch_id:
          anyOf:
            - type: integer
            - type: 'null'
        branch_display_name:
          anyOf:
            - type: string
            - type: 'null'
        branch_phone:
          anyOf:
            - type: string
            - type: 'null'
        branch_image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RightmoveTransactionType:
      type: string
      enum:
        - sale
        - rent
    RightmovePropertyType:
      type: string
      enum:
        - any
        - houses
        - flats
        - bungalows
        - land
        - commercial
        - other
        - detached
        - semi-detached
        - terraced
        - park-home
    RightmoveSortOrder:
      type: string
      enum:
        - most_recent
        - price_high
        - price_low
        - oldest
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````