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

# /quintoandar/properties/similar

> Get QuintoAndar listings recommended for a given property by scope (nearby, same condominium, or same neighbourhood). Returns listings with address, neighbourhood and coordinates, rent and sale price, total cost, area, bedrooms, bathrooms, suites, parking, amenities, installations, listing tags and images.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/quintoandar/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/quintoandar/properties/similar:
    post:
      tags:
        - /quintoandar
      summary: /quintoandar/properties/similar
      description: >-
        Get QuintoAndar listings recommended for a given property by scope
        (nearby, same condominium, or same neighbourhood). Returns listings with
        address, neighbourhood and coordinates, rent and sale price, total cost,
        area, bedrooms, bathrooms, suites, parking, amenities, installations,
        listing tags and images.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Property not found (well-formed but
        nonexistent ID)
      operationId: __api_quintoandar_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/QuintoandarSimilarPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/QuintoandarListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    QuintoandarSimilarPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
        scope:
          $ref: '#/components/schemas/QuintoandarSimilarScope'
          default: nearby
        business_context:
          $ref: '#/components/schemas/QuintoandarBusinessContext'
          default: RENT
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - property
        - count
    QuintoandarListing:
      properties:
        '@type':
          type: string
          default: QuintoandarListing
        id:
          type: string
        url:
          type: string
        house_type:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        neighbourhood:
          anyOf:
            - type: string
            - type: 'null'
        region_name:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        rent_value:
          anyOf:
            - type: number
            - type: 'null'
        sale_price:
          anyOf:
            - type: number
            - type: 'null'
        total_cost:
          anyOf:
            - type: number
            - type: 'null'
        condominium:
          anyOf:
            - type: number
            - type: 'null'
        iptu_plus_condominium:
          anyOf:
            - type: number
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        suite_count:
          anyOf:
            - type: integer
            - type: 'null'
        parking_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_furnished:
          anyOf:
            - type: boolean
            - type: 'null'
        has_elevator:
          anyOf:
            - type: boolean
            - type: 'null'
        for_rent:
          anyOf:
            - type: boolean
            - type: 'null'
        for_sale:
          anyOf:
            - type: boolean
            - type: 'null'
        visit_status:
          anyOf:
            - type: string
            - type: 'null'
        yield_rate:
          anyOf:
            - type: number
            - type: 'null'
        listing_tags:
          items:
            type: string
          type: array
          default: []
        special_conditions:
          items:
            type: string
          type: array
          default: []
        amenities:
          items:
            type: string
          type: array
          default: []
        installations:
          items:
            type: string
          type: array
          default: []
        accessibility:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    QuintoandarSimilarScope:
      type: string
      enum:
        - nearby
        - condominium
        - neighbourhood
    QuintoandarBusinessContext:
      type: string
      enum:
        - RENT
        - SALE
    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

````