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

# /housing/properties

> Get full Housing.com property listing details by id or listing URL: configuration (BHK, bathrooms, balconies, parking), built-up and carpet area, floor, facing, furnishing, age, possession, price, brokerage and EMI, locality and geo coordinates, RERA, amenities, description, images and dealer.

**Price:** 1 credit

**⚠️ Common errors:** 412: Property not found (well-formed but nonexistent id, or page has no listing)



## OpenAPI

````yaml /openapi/real-estate.json post /api/housing/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/housing/properties:
    post:
      tags:
        - /housing
      summary: /housing/properties
      description: >-
        Get full Housing.com property listing details by id or listing URL:
        configuration (BHK, bathrooms, balconies, parking), built-up and carpet
        area, floor, facing, furnishing, age, possession, price, brokerage and
        EMI, locality and geo coordinates, RERA, amenities, description, images
        and dealer.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Property not found (well-formed but
        nonexistent id, or page has no listing)
      operationId: __api_housing_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HousingPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HousingProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HousingPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    HousingProperty:
      properties:
        '@type':
          type: string
          default: HousingProperty
        id:
          type: string
        url:
          type: string
        subtitle:
          anyOf:
            - type: string
            - type: 'null'
        project_name:
          anyOf:
            - type: string
            - type: 'null'
        result_type:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        balcony_count:
          anyOf:
            - type: integer
            - type: 'null'
        parking_count:
          anyOf:
            - type: integer
            - type: 'null'
        built_up_area:
          anyOf:
            - type: number
            - type: 'null'
        carpet_area:
          anyOf:
            - type: number
            - type: 'null'
        area_unit:
          anyOf:
            - type: string
            - type: 'null'
        floor:
          anyOf:
            - type: string
            - type: 'null'
        facing:
          anyOf:
            - type: string
            - type: 'null'
        furnishing:
          anyOf:
            - type: string
            - type: 'null'
        age:
          anyOf:
            - type: string
            - type: 'null'
        possession_status:
          anyOf:
            - type: string
            - type: 'null'
        property_tags:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: string
            - type: 'null'
        brokerage:
          anyOf:
            - type: number
            - type: 'null'
        emi:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        sublocality:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        rera_id:
          anyOf:
            - type: string
            - type: 'null'
        is_rera_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        highlights:
          items:
            type: string
          type: array
          default: []
        amenities:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        dealer:
          anyOf:
            - $ref: '#/components/schemas/HousingPropertyDealer'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HousingPropertyDealer:
      properties:
        '@type':
          type: string
          default: HousingPropertyDealer
        name:
          anyOf:
            - type: string
            - type: 'null'
        firm_name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        designation:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        customers_served:
          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

````