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

> Get full QuintoAndar property details by numeric ID (or property URL): address and coordinates, listing status, rent and sale price, condominium fee, IPTU, total cost, tenant service fee, area, bedrooms, bathrooms, suites, parking, floor range, construction year, availability, visit status, condo type, published date, accepts pets, furnished, near subway, description, amenities, building installations, accessibility features, nearby places, photos and video.

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/quintoandar/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/quintoandar/properties:
    post:
      tags:
        - /quintoandar
      summary: /quintoandar/properties
      description: >-
        Get full QuintoAndar property details by numeric ID (or property URL):
        address and coordinates, listing status, rent and sale price,
        condominium fee, IPTU, total cost, tenant service fee, area, bedrooms,
        bathrooms, suites, parking, floor range, construction year,
        availability, visit status, condo type, published date, accepts pets,
        furnished, near subway, description, amenities, building installations,
        accessibility features, nearby places, photos and video.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Property not found (well-formed but
        nonexistent ID)
      operationId: __api_quintoandar_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QuintoandarPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/QuintoandarProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    QuintoandarPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    QuintoandarProperty:
      properties:
        '@type':
          type: string
          default: QuintoandarProperty
        id:
          type: string
        url:
          type: string
        display_id:
          anyOf:
            - type: string
            - type: 'null'
        business_context:
          items:
            type: string
          type: array
          default: []
        house_type:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        neighbourhood:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        region_name:
          anyOf:
            - type: string
            - type: 'null'
        rent_value:
          anyOf:
            - type: number
            - type: 'null'
        sale_price:
          anyOf:
            - type: number
            - type: 'null'
        condominium:
          anyOf:
            - type: number
            - type: 'null'
        iptu:
          anyOf:
            - type: number
            - type: 'null'
        total_cost:
          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'
        floor_min:
          anyOf:
            - type: integer
            - type: 'null'
        floor_max:
          anyOf:
            - type: integer
            - type: 'null'
        construction_year:
          anyOf:
            - type: integer
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        visit_status:
          anyOf:
            - type: string
            - type: 'null'
        condo_type:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        tenant_service_fee:
          anyOf:
            - type: number
            - type: 'null'
        accepts_pets:
          anyOf:
            - type: boolean
            - type: 'null'
        is_furnished:
          anyOf:
            - type: boolean
            - type: 'null'
        is_near_subway:
          anyOf:
            - type: boolean
            - type: 'null'
        for_rent:
          anyOf:
            - type: boolean
            - type: 'null'
        for_sale:
          anyOf:
            - type: boolean
            - type: 'null'
        yield_rate:
          anyOf:
            - type: number
            - type: 'null'
        amenities:
          items:
            type: string
          type: array
          default: []
        installations:
          items:
            type: string
          type: array
          default: []
        accessibility:
          items:
            type: string
          type: array
          default: []
        special_conditions:
          items:
            type: string
          type: array
          default: []
        listing_tags:
          items:
            type: string
          type: array
          default: []
        places_nearby:
          items:
            $ref: '#/components/schemas/QuintoandarPlaceNearby'
          type: array
          default: []
        photos:
          items:
            $ref: '#/components/schemas/QuintoandarPhoto'
          type: array
          default: []
        video_url:
          anyOf:
            - type: string
            - type: 'null'
        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
    QuintoandarPlaceNearby:
      properties:
        '@type':
          type: string
          default: QuintoandarPlaceNearby
        name:
          type: string
        type:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    QuintoandarPhoto:
      properties:
        '@type':
          type: string
          default: QuintoandarPhoto
        url:
          type: string
        caption:
          anyOf:
            - type: string
            - type: 'null'
        is_cover:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - url
    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

````