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

# /28hse/estates/transactions

> List the recorded sale or letting transactions of one Hong Kong estate (屋苑). Each row returns the deal id and page URL where the source publishes one, the estate name, the address down to the block, floor and flat, the transaction date, whether the record comes from the Land Registry or from market reporting, the bedroom count, the saleable area in square feet, the price in HKD with the price per saleable square foot, and — where the unit changed hands before — the profit or loss percentage against the previous sale. Rows for units with a recorded history also carry the phase, block and unit numbers that 28hse/estates/units expands into that unit's full price chain.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/real-estate.json post /api/28hse/estates/transactions
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/28hse/estates/transactions:
    post:
      tags:
        - /28hse
      summary: /28hse/estates/transactions
      description: >-
        List the recorded sale or letting transactions of one Hong Kong estate
        (屋苑). Each row returns the deal id and page URL where the source
        publishes one, the estate name, the address down to the block, floor and
        flat, the transaction date, whether the record comes from the Land
        Registry or from market reporting, the bedroom count, the saleable area
        in square feet, the price in HKD with the price per saleable square
        foot, and — where the unit changed hands before — the profit or loss
        percentage against the previous sale. Rows for units with a recorded
        history also carry the phase, block and unit numbers that
        28hse/estates/units expands into that unit's full price chain.


        **Price:** 1 credit
      operationId: __api_28hse_estates_transactions_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Hse28EstateTransactionsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Hse28EstateTransaction'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Hse28EstateTransactionsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        site:
          $ref: '#/components/schemas/Hse28Site'
          default: 28hse
        lang:
          $ref: '#/components/schemas/Hse28Lang'
          default: tc
        estate:
          type: string
        count:
          type: integer
          minimum: 1
        deal_type:
          $ref: '#/components/schemas/Hse28EstateTransactionKind'
          default: sale
        phase_no:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - estate
        - count
    Hse28EstateTransaction:
      properties:
        '@type':
          type: string
          default: Hse28EstateTransaction
        id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        estate:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        transaction_at:
          anyOf:
            - type: integer
            - type: 'null'
        transaction_type:
          anyOf:
            - type: string
            - type: 'null'
        room_count:
          anyOf:
            - type: integer
            - type: 'null'
        saleable_area:
          anyOf:
            - type: number
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_per_sqft:
          anyOf:
            - type: number
            - type: 'null'
        profit_loss_percent:
          anyOf:
            - type: number
            - type: 'null'
        unit_id:
          anyOf:
            - type: string
            - type: 'null'
        phase_no:
          anyOf:
            - type: string
            - type: 'null'
        block_no:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    Hse28Site:
      type: string
      enum:
        - 28hse
        - squarefoot
    Hse28Lang:
      type: string
      enum:
        - tc
        - cn
        - en
    Hse28EstateTransactionKind:
      type: string
      enum:
        - sale
        - rent
    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

````