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

# /propertyfinder/properties

> Get full Property Finder property listing details by id or URL: title, description, price (with period and currency), price per area, beds/baths/area, property type, offering type, furnishing, completion status, amenities, regulatory (RERA/DLD permit and validation), geo coordinates, gallery, agent, broker and location.

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/propertyfinder/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/propertyfinder/properties:
    post:
      tags:
        - /propertyfinder
      summary: /propertyfinder/properties
      description: >-
        Get full Property Finder property listing details by id or URL: title,
        description, price (with period and currency), price per area,
        beds/baths/area, property type, offering type, furnishing, completion
        status, amenities, regulatory (RERA/DLD permit and validation), geo
        coordinates, gallery, agent, broker and location.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Property not found (well-formed but
        nonexistent listing id, or page has no listing)
      operationId: __api_propertyfinder_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PropertyfinderPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PropertyfinderProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PropertyfinderPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
        domain:
          $ref: '#/components/schemas/PropertyfinderDomain'
          default: ae
      type: object
      required:
        - property
    PropertyfinderProperty:
      properties:
        '@type':
          type: string
          default: PropertyfinderProperty
        id:
          type: string
        url:
          type: string
        reference:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        offering_type:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        completion_status:
          anyOf:
            - type: string
            - type: 'null'
        furnishing:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_period:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        price_per_area:
          anyOf:
            - type: number
            - type: 'null'
        bedrooms:
          anyOf:
            - type: string
            - type: 'null'
        bathrooms:
          anyOf:
            - type: integer
            - type: 'null'
        area:
          anyOf:
            - type: number
            - type: 'null'
        area_unit:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_premium:
          anyOf:
            - type: boolean
            - type: 'null'
        is_exclusive:
          anyOf:
            - type: boolean
            - type: 'null'
        is_new_construction:
          anyOf:
            - type: boolean
            - type: 'null'
        is_direct_from_developer:
          anyOf:
            - type: boolean
            - type: 'null'
        is_high_demand:
          anyOf:
            - type: boolean
            - type: 'null'
        is_great_value:
          anyOf:
            - type: boolean
            - type: 'null'
        listed_date:
          anyOf:
            - type: string
            - type: 'null'
        available_at:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        location_name:
          anyOf:
            - type: string
            - type: 'null'
        location_path_name:
          anyOf:
            - type: string
            - type: 'null'
        location_tree:
          items:
            $ref: '#/components/schemas/PropertyfinderLocationNode'
          type: array
          default: []
        amenities:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        video_id:
          anyOf:
            - type: string
            - type: 'null'
        view_360_url:
          anyOf:
            - type: string
            - type: 'null'
        agent:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderPropertyAgent'
            - type: 'null'
        broker:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderPropertyBroker'
            - type: 'null'
        regulatory:
          anyOf:
            - $ref: '#/components/schemas/PropertyfinderRegulatory'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PropertyfinderDomain:
      type: string
      enum:
        - ae
        - sa
        - qa
        - bh
        - eg
    PropertyfinderLocationNode:
      properties:
        '@type':
          type: string
          default: PropertyfinderLocationNode
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        location_type:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        level:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    PropertyfinderPropertyAgent:
      properties:
        '@type':
          type: string
          default: PropertyfinderPropertyAgent
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        whatsapp_phone:
          anyOf:
            - type: string
            - type: 'null'
        position:
          anyOf:
            - type: string
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        is_super_agent:
          anyOf:
            - type: boolean
            - type: 'null'
        years_of_experience:
          anyOf:
            - type: integer
            - type: 'null'
        total_property_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        transaction_count:
          anyOf:
            - type: integer
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    PropertyfinderPropertyBroker:
      properties:
        '@type':
          type: string
          default: PropertyfinderPropertyBroker
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        license_number:
          anyOf:
            - type: string
            - type: 'null'
        total_property_count:
          anyOf:
            - type: integer
            - type: 'null'
        total_agent_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    PropertyfinderRegulatory:
      properties:
        '@type':
          type: string
          default: PropertyfinderRegulatory
        permit_number:
          anyOf:
            - type: string
            - type: 'null'
        issued_license_number:
          anyOf:
            - type: string
            - type: 'null'
        permit_validation_url:
          anyOf:
            - type: string
            - type: 'null'
        authority_name:
          anyOf:
            - type: string
            - type: 'null'
        broker_license_number:
          anyOf:
            - type: string
            - type: 'null'
        agent_license_number:
          anyOf:
            - type: string
            - type: 'null'
        zone_name:
          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

````