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

> Get full REALTOR.ca (CREA) listing details by listing ID, MLS® number or listing URL: price, address, coordinates, bedrooms/bathrooms, building and land attributes, room-by-room measurements, amenities, parking, maintenance fees, taxes, photos, media, listing history and the representing REALTOR® with their brokerage.

**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
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:
    post:
      tags:
        - /realtorca
      summary: /realtorca/properties
      description: >-
        Get full REALTOR.ca (CREA) listing details by listing ID, MLS® number or
        listing URL: price, address, coordinates, bedrooms/bathrooms, building
        and land attributes, room-by-room measurements, amenities, parking,
        maintenance fees, taxes, photos, media, listing history and the
        representing REALTOR® with their brokerage.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent, expired or removed listing)
      operationId: __api_realtorca_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RealtorcaPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RealtorcaProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RealtorcaPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
        culture:
          $ref: '#/components/schemas/RealtorcaCulture'
          default: en
        currency:
          $ref: '#/components/schemas/RealtorcaCurrency'
          default: CAD
      type: object
      required:
        - property
    RealtorcaProperty:
      properties:
        '@type':
          type: string
          default: RealtorcaProperty
        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: []
        location_description:
          anyOf:
            - type: string
            - type: 'null'
        features:
          items:
            type: string
          type: array
          default: []
        community_features:
          items:
            type: string
          type: array
          default: []
        view_type:
          items:
            type: string
          type: array
          default: []
        pool_type:
          anyOf:
            - type: string
            - type: 'null'
        maintenance_fee:
          anyOf:
            - type: string
            - type: 'null'
        maintenance_fee_types:
          items:
            type: string
          type: array
          default: []
        management_company:
          anyOf:
            - type: string
            - type: 'null'
        tax_amount:
          anyOf:
            - type: string
            - type: 'null'
        building_age:
          anyOf:
            - type: string
            - type: 'null'
        constructed_date:
          anyOf:
            - type: string
            - type: 'null'
        appliances:
          items:
            type: string
          type: array
          default: []
        basement_type:
          anyOf:
            - type: string
            - type: 'null'
        cooling_type:
          anyOf:
            - type: string
            - type: 'null'
        heating_type:
          anyOf:
            - type: string
            - type: 'null'
        heating_fuel:
          anyOf:
            - type: string
            - type: 'null'
        exterior_finish:
          items:
            type: string
          type: array
          default: []
        has_fireplace:
          anyOf:
            - type: boolean
            - type: 'null'
        bedrooms_above_ground:
          anyOf:
            - type: integer
            - type: 'null'
        bedrooms_below_ground:
          anyOf:
            - type: integer
            - type: 'null'
        land_landscape_features:
          items:
            type: string
          type: array
          default: []
        land_surface_water:
          anyOf:
            - type: string
            - type: 'null'
        land_access_type:
          items:
            type: string
          type: array
          default: []
        land_sewer:
          anyOf:
            - type: string
            - type: 'null'
        rooms:
          items:
            $ref: '#/components/schemas/RealtorcaRoom'
          type: array
          default: []
        media:
          items:
            $ref: '#/components/schemas/RealtorcaMedia'
          type: array
          default: []
        video_url:
          anyOf:
            - type: string
            - type: 'null'
        history:
          items:
            $ref: '#/components/schemas/RealtorcaPropertyHistoryEvent'
          type: array
          default: []
        uploaded_by:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_by_website_url:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_by_address:
          anyOf:
            - type: string
            - type: 'null'
        is_new_listing:
          anyOf:
            - type: boolean
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
      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
    RealtorcaRoom:
      properties:
        '@type':
          type: string
          default: RealtorcaRoom
        type:
          anyOf:
            - type: string
            - type: 'null'
        level:
          anyOf:
            - type: string
            - type: 'null'
        dimension:
          anyOf:
            - type: string
            - type: 'null'
        width:
          anyOf:
            - type: string
            - type: 'null'
        length:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    RealtorcaMedia:
      properties:
        '@type':
          type: string
          default: RealtorcaMedia
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        video_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    RealtorcaPropertyHistoryEvent:
      properties:
        '@type':
          type: string
          default: RealtorcaPropertyHistoryEvent
        event:
          anyOf:
            - type: string
            - type: 'null'
        date:
          anyOf:
            - type: string
            - type: 'null'
        price:
          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
    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

````