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

# /hemnet/properties

> Get full Hemnet property listing details by listing id (or listing URL): address, area, municipality, region and district, asking price, monthly fee, price per m², operating costs, living and supplemental and land area, floor, number of rooms, construction year, housing form, tenure, energy class, amenities (balcony, elevator, patio), housing cooperative (BRF), photos and floor plans, description, coordinates, view count, days on Hemnet, upcoming open house viewings, the selling broker and agency, and the address price history.

**Price:** 1 credit

**⚠️ Common errors:** 412: Listing not found (well-formed but nonexistent listing id)



## OpenAPI

````yaml /openapi/real-estate.json post /api/hemnet/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/hemnet/properties:
    post:
      tags:
        - /hemnet
      summary: /hemnet/properties
      description: >-
        Get full Hemnet property listing details by listing id (or listing URL):
        address, area, municipality, region and district, asking price, monthly
        fee, price per m², operating costs, living and supplemental and land
        area, floor, number of rooms, construction year, housing form, tenure,
        energy class, amenities (balcony, elevator, patio), housing cooperative
        (BRF), photos and floor plans, description, coordinates, view count,
        days on Hemnet, upcoming open house viewings, the selling broker and
        agency, and the address price history.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent listing id)
      operationId: __api_hemnet_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HemnetPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HemnetProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HemnetPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    HemnetProperty:
      properties:
        '@type':
          type: string
          default: HemnetProperty
        id:
          type: string
        street_address:
          anyOf:
            - type: string
            - type: 'null'
        area:
          anyOf:
            - type: string
            - type: 'null'
        post_code:
          anyOf:
            - type: string
            - type: 'null'
        municipality:
          anyOf:
            - $ref: '#/components/schemas/HemnetLocationRef'
            - type: 'null'
        region:
          anyOf:
            - $ref: '#/components/schemas/HemnetLocationRef'
            - type: 'null'
        district:
          anyOf:
            - $ref: '#/components/schemas/HemnetLocationRef'
            - type: 'null'
        asking_price:
          anyOf:
            - $ref: '#/components/schemas/HemnetMoney'
            - type: 'null'
        fee:
          anyOf:
            - $ref: '#/components/schemas/HemnetMoney'
            - type: 'null'
        square_meter_price:
          anyOf:
            - $ref: '#/components/schemas/HemnetMoney'
            - type: 'null'
        running_costs:
          anyOf:
            - $ref: '#/components/schemas/HemnetMoney'
            - type: 'null'
        living_area:
          anyOf:
            - type: number
            - type: 'null'
        supplemental_area:
          anyOf:
            - type: number
            - type: 'null'
        land_area:
          anyOf:
            - type: number
            - type: 'null'
        formatted_floor:
          anyOf:
            - type: string
            - type: 'null'
        room_count:
          anyOf:
            - type: number
            - type: 'null'
        construction_year:
          anyOf:
            - type: string
            - type: 'null'
        housing_form:
          anyOf:
            - type: string
            - type: 'null'
        housing_form_groups:
          items:
            type: string
          type: array
          default: []
        tenure:
          anyOf:
            - type: string
            - type: 'null'
        energy_class:
          anyOf:
            - type: string
            - type: 'null'
        is_foreclosure:
          anyOf:
            - type: boolean
            - type: 'null'
        is_new_construction:
          anyOf:
            - type: boolean
            - type: 'null'
        is_upcoming:
          anyOf:
            - type: boolean
            - type: 'null'
        is_project:
          anyOf:
            - type: boolean
            - type: 'null'
        bidding_started:
          anyOf:
            - type: boolean
            - type: 'null'
        days_on_hemnet:
          anyOf:
            - type: integer
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        water_distance_meters:
          anyOf:
            - type: integer
            - type: 'null'
        coastline_distance_meters:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        coordinates:
          items:
            type: number
          type: array
          default: []
        labels:
          items:
            type: string
          type: array
          default: []
        open_houses:
          items:
            $ref: '#/components/schemas/HemnetOpenHouse'
          type: array
          default: []
        amenities:
          items:
            $ref: '#/components/schemas/HemnetAmenity'
          type: array
          default: []
        broker:
          anyOf:
            - $ref: '#/components/schemas/HemnetBroker'
            - type: 'null'
        agency:
          anyOf:
            - $ref: '#/components/schemas/HemnetAgency'
            - type: 'null'
        brf:
          anyOf:
            - $ref: '#/components/schemas/HemnetBrf'
            - type: 'null'
        price_history:
          items:
            $ref: '#/components/schemas/HemnetSaleRecord'
          type: array
          default: []
        images:
          items:
            type: string
          type: array
          default: []
        floor_plans:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HemnetLocationRef:
      properties:
        '@type':
          type: string
          default: HemnetLocationRef
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HemnetMoney:
      properties:
        '@type':
          type: string
          default: HemnetMoney
        amount:
          anyOf:
            - type: integer
            - type: 'null'
        formatted:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HemnetOpenHouse:
      properties:
        '@type':
          type: string
          default: HemnetOpenHouse
        start_at:
          anyOf:
            - type: integer
            - type: 'null'
        end_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    HemnetAmenity:
      properties:
        '@type':
          type: string
          default: HemnetAmenity
        kind:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    HemnetBroker:
      properties:
        '@type':
          type: string
          default: HemnetBroker
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HemnetAgency:
      properties:
        '@type':
          type: string
          default: HemnetAgency
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        street_address:
          anyOf:
            - type: string
            - type: 'null'
        post_code:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HemnetBrf:
      properties:
        '@type':
          type: string
          default: HemnetBrf
        registration_number:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HemnetSaleRecord:
      properties:
        '@type':
          type: string
          default: HemnetSaleRecord
        id:
          anyOf:
            - type: string
            - type: 'null'
        sold_at:
          anyOf:
            - type: string
            - type: 'null'
        final_price:
          anyOf:
            - type: string
            - type: 'null'
        asking_price:
          anyOf:
            - type: string
            - type: 'null'
        street_address:
          anyOf:
            - type: string
            - type: 'null'
        living_area:
          anyOf:
            - type: string
            - type: 'null'
        rooms:
          anyOf:
            - type: string
            - type: 'null'
        fee:
          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

````