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

# /propertyguru/properties

> Get full PropertyGuru property listing details by id or listing URL: title, listing type, price and price per sqft, price type, bedrooms, bathrooms, floor and land area, property type, HDB type, floor level, furnishing, tenure, build year, developer, district / region / estate, street and address, postcode, geo coordinates, green score, project reference, amenities, unit features, nearby places (MRT, schools), description, images and floorplans, and the listing agent (name, CEA license, agency).

**Price:** 10 credits

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



## OpenAPI

````yaml /openapi/real-estate.json post /api/propertyguru/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/propertyguru/properties:
    post:
      tags:
        - /propertyguru
      summary: /propertyguru/properties
      description: >-
        Get full PropertyGuru property listing details by id or listing URL:
        title, listing type, price and price per sqft, price type, bedrooms,
        bathrooms, floor and land area, property type, HDB type, floor level,
        furnishing, tenure, build year, developer, district / region / estate,
        street and address, postcode, geo coordinates, green score, project
        reference, amenities, unit features, nearby places (MRT, schools),
        description, images and floorplans, and the listing agent (name, CEA
        license, agency).


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent id, or page has no listing)
      operationId: __api_propertyguru_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PropertyGuruPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PropertyGuruProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PropertyGuruPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        region:
          $ref: '#/components/schemas/PropertyGuruRegion'
          default: sg
        listing:
          type: string
          minLength: 1
      type: object
      required:
        - listing
    PropertyGuruProperty:
      properties:
        '@type':
          type: string
          default: PropertyGuruProperty
        id:
          type: string
        url:
          type: string
        listing_type:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        headline:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        property_type_code:
          anyOf:
            - type: string
            - type: 'null'
        hdb_type:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        price_type:
          anyOf:
            - type: string
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        maintenance_fee:
          anyOf:
            - type: number
            - type: 'null'
        bedrooms:
          anyOf:
            - type: integer
            - type: 'null'
        bathrooms:
          anyOf:
            - type: integer
            - type: 'null'
        floor_area_sqft:
          anyOf:
            - type: number
            - type: 'null'
        land_area_sqft:
          anyOf:
            - type: number
            - type: 'null'
        floor_level:
          anyOf:
            - type: string
            - type: 'null'
        furnishing:
          anyOf:
            - type: string
            - type: 'null'
        facing:
          anyOf:
            - type: string
            - type: 'null'
        tenure:
          anyOf:
            - type: string
            - type: 'null'
        tenure_text:
          anyOf:
            - type: string
            - type: 'null'
        build_year:
          anyOf:
            - type: integer
            - type: 'null'
        is_new_project:
          anyOf:
            - type: boolean
            - type: 'null'
        developer:
          anyOf:
            - type: string
            - type: 'null'
        project_id:
          anyOf:
            - type: string
            - type: 'null'
        project_name:
          anyOf:
            - type: string
            - type: 'null'
        project_url:
          anyOf:
            - type: string
            - type: 'null'
        green_score:
          anyOf:
            - type: integer
            - type: 'null'
        green_score_description:
          anyOf:
            - type: string
            - type: 'null'
        district_code:
          anyOf:
            - type: string
            - type: 'null'
        district_text:
          anyOf:
            - type: string
            - type: 'null'
        region_text:
          anyOf:
            - type: string
            - type: 'null'
        estate:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        postcode:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        posted_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        amenities:
          items:
            type: string
          type: array
          default: []
        unit_features:
          items:
            type: string
          type: array
          default: []
        nearby_places:
          items:
            $ref: '#/components/schemas/PropertyGuruNearbyPlace'
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        floorplans:
          items:
            type: string
          type: array
          default: []
        agent:
          anyOf:
            - $ref: '#/components/schemas/PropertyGuruPropertyAgent'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PropertyGuruRegion:
      type: string
      enum:
        - sg
        - my
    PropertyGuruNearbyPlace:
      properties:
        '@type':
          type: string
          default: PropertyGuruNearbyPlace
        category:
          type: string
        name:
          type: string
        distance_km:
          anyOf:
            - type: number
            - type: 'null'
        walking_distance_km:
          anyOf:
            - type: number
            - type: 'null'
        walking_duration_mins:
          anyOf:
            - type: integer
            - type: 'null'
        subcategory:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - category
        - name
    PropertyGuruPropertyAgent:
      properties:
        '@type':
          type: string
          default: PropertyGuruPropertyAgent
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        license:
          anyOf:
            - type: string
            - type: 'null'
        job_title:
          anyOf:
            - type: string
            - type: 'null'
        agency:
          anyOf:
            - type: string
            - type: 'null'
        agency_license:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          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

````