> ## 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

> Get full Rightmove property details by property ID (or property URL): address, price, transaction type, property sub-type, bedroom/bathroom counts, description, key features, images, floorplans, EPC graphs, coordinates, nearest stations, tenure, council tax band, size and the marketing agent.

**Price:** 10 credits

**⚠️ Common errors:** 412: Property not found (well-formed but nonexistent or removed listing)



## OpenAPI

````yaml /openapi/real-estate.json post /api/rightmove/properties
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:
    post:
      tags:
        - /rightmove
      summary: /rightmove/properties
      description: >-
        Get full Rightmove property details by property ID (or property URL):
        address, price, transaction type, property sub-type, bedroom/bathroom
        counts, description, key features, images, floorplans, EPC graphs,
        coordinates, nearest stations, tenure, council tax band, size and the
        marketing agent.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Property not found (well-formed but
        nonexistent or removed listing)
      operationId: __api_rightmove_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RightmovePropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RightmoveProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RightmovePropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    RightmoveProperty:
      properties:
        '@type':
          type: string
          default: RightmoveProperty
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        display_address:
          anyOf:
            - type: string
            - type: 'null'
        outcode:
          anyOf:
            - type: string
            - type: 'null'
        incode:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        channel:
          anyOf:
            - type: string
            - type: 'null'
        property_sub_type:
          anyOf:
            - type: string
            - type: 'null'
        property_phrase:
          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'
        secondary_price:
          anyOf:
            - type: string
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: string
            - type: 'null'
        let_available_date:
          anyOf:
            - type: string
            - type: 'null'
        deposit:
          anyOf:
            - type: integer
            - type: 'null'
        let_type:
          anyOf:
            - type: string
            - type: 'null'
        furnish_type:
          anyOf:
            - type: string
            - type: 'null'
        minimum_term_months:
          anyOf:
            - type: integer
            - type: 'null'
        key_features:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        floorplans:
          items:
            type: string
          type: array
          default: []
        virtual_tours:
          items:
            type: string
          type: array
          default: []
        brochures:
          items:
            type: string
          type: array
          default: []
        epc_graphs:
          items:
            type: string
          type: array
          default: []
        size_min_sqft:
          anyOf:
            - type: number
            - type: 'null'
        size_max_sqft:
          anyOf:
            - type: number
            - type: 'null'
        size_min_sqm:
          anyOf:
            - type: number
            - type: 'null'
        size_max_sqm:
          anyOf:
            - type: number
            - type: 'null'
        tenure_type:
          anyOf:
            - type: string
            - type: 'null'
        years_remaining_on_lease:
          anyOf:
            - type: integer
            - type: 'null'
        council_tax_band:
          anyOf:
            - type: string
            - type: 'null'
        annual_ground_rent:
          anyOf:
            - type: number
            - type: 'null'
        annual_service_charge:
          anyOf:
            - type: number
            - type: 'null'
        nearest_stations:
          items:
            $ref: '#/components/schemas/RightmoveStation'
          type: array
          default: []
        listed_at:
          anyOf:
            - type: string
            - type: 'null'
        is_published:
          anyOf:
            - type: boolean
            - type: 'null'
        is_archived:
          anyOf:
            - type: boolean
            - type: 'null'
        is_premium:
          anyOf:
            - type: boolean
            - type: 'null'
        contact_phone:
          anyOf:
            - type: string
            - type: 'null'
        agent:
          anyOf:
            - $ref: '#/components/schemas/RightmovePropertyAgent'
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RightmoveStation:
      properties:
        '@type':
          type: string
          default: RightmoveStation
        name:
          type: string
        types:
          items:
            type: string
          type: array
          default: []
        distance:
          anyOf:
            - type: number
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    RightmovePropertyAgent:
      properties:
        '@type':
          type: string
          default: RightmovePropertyAgent
        branch_id:
          anyOf:
            - type: integer
            - type: 'null'
        branch_name:
          anyOf:
            - type: string
            - type: 'null'
        branch_display_name:
          anyOf:
            - type: string
            - type: 'null'
        company_name:
          anyOf:
            - type: string
            - type: 'null'
        company_trading_name:
          anyOf:
            - type: string
            - type: 'null'
        display_address:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        properties_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````