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

# /realtorca/properties/similar

> Get the listings REALTOR.ca recommends alongside a given MLS® listing — comparable nearby properties with full listing details for each.

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/realtorca/properties/similar
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/realtorca/properties/similar:
    post:
      tags:
        - /realtorca
      summary: /realtorca/properties/similar
      description: >-
        Get the listings REALTOR.ca recommends alongside a given MLS® listing —
        comparable nearby properties with full listing details for each.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent, expired or removed listing)
      operationId: __api_realtorca_properties_similar_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RealtorcaPropertiesSimilarPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RealtorcaListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RealtorcaPropertiesSimilarPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
        count:
          type: integer
          maximum: 600
          minimum: 1
        culture:
          $ref: '#/components/schemas/RealtorcaCulture'
          default: en
        currency:
          $ref: '#/components/schemas/RealtorcaCurrency'
          default: CAD
      type: object
      required:
        - property
        - count
    RealtorcaListing:
      properties:
        '@type':
          type: string
          default: RealtorcaListing
        id:
          type: string
        mls_number:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        status_id:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        display_price:
          anyOf:
            - type: string
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        ownership_type:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        province:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        community_name:
          anyOf:
            - type: string
            - type: 'null'
        neighbourhood:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        bedrooms:
          anyOf:
            - type: string
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        storey_count:
          anyOf:
            - type: number
            - type: 'null'
        building_type:
          anyOf:
            - type: string
            - type: 'null'
        size_interior:
          anyOf:
            - type: string
            - type: 'null'
        size_interior_sqft:
          anyOf:
            - type: number
            - type: 'null'
        building_amenities:
          items:
            type: string
          type: array
          default: []
        parking_type:
          items:
            type: string
          type: array
          default: []
        parking_space_count:
          anyOf:
            - type: integer
            - type: 'null'
        amenities_nearby:
          items:
            type: string
          type: array
          default: []
        land_size:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        time_on_realtor:
          anyOf:
            - type: string
            - type: 'null'
        business:
          anyOf:
            - $ref: '#/components/schemas/RealtorcaBusiness'
            - type: 'null'
        agents:
          items:
            $ref: '#/components/schemas/RealtorcaIndividualRef'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RealtorcaCulture:
      type: string
      enum:
        - en
        - fr
    RealtorcaCurrency:
      type: string
      enum:
        - CAD
        - USD
    RealtorcaBusiness:
      properties:
        '@type':
          type: string
          default: RealtorcaBusiness
        type:
          anyOf:
            - type: string
            - type: 'null'
        sub_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    RealtorcaIndividualRef:
      properties:
        '@type':
          type: string
          default: RealtorcaIndividualRef
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        websites:
          items:
            type: string
          type: array
          default: []
        phones:
          items:
            $ref: '#/components/schemas/RealtorcaPhone'
          type: array
          default: []
        organization:
          anyOf:
            - $ref: '#/components/schemas/RealtorcaOrganizationRef'
            - 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
    RealtorcaPhone:
      properties:
        '@type':
          type: string
          default: RealtorcaPhone
        type:
          anyOf:
            - type: string
            - type: 'null'
        number:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    RealtorcaOrganizationRef:
      properties:
        '@type':
          type: string
          default: RealtorcaOrganizationRef
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        designation:
          anyOf:
            - type: string
            - type: 'null'
        organization_type:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        phones:
          items:
            $ref: '#/components/schemas/RealtorcaPhone'
          type: array
          default: []
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````