---
title: "ValuationResult"
url: "https://real-estate-agency.apim.eu/apis/market-valuation/versions/3b18507e-d857-48a4-a3bc-b79b2eb2cfa4/schemas/ValuationResult"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/market-valuation/versions/3b18507e-d857-48a4-a3bc-b79b2eb2cfa4.md

# ValuationResult

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Market Valuation
  version: 1.0.0
servers:
  - url: https://api.realestateagency.example/v1
    description: Production
  - url: https://sandbox.api.realestateagency.example/v1
    description: Sandbox
components:
  schemas:
    Reason:
      type: string
      enum:
        - initial_consultation
        - sale
        - rental
        - financing
        - inheritance
      example: sale
    Range:
      type: object
      properties:
        low:
          type: integer
          example: 602000
        high:
          type: integer
          example: 674000
    ValuationBasis:
      type: object
      description: What the indication was derived from.
      properties:
        comparables_count:
          type: integer
          example: 23
        period_months:
          type: integer
          example: 12
        radius_meters:
          type: integer
          example: 1200
    ValuationResult:
      type: object
      properties:
        id:
          type: string
          example: val_3e18
        property_id:
          type: string
          nullable: true
          example: prop_8f2c1a
        reason:
          $ref: "#/components/schemas/Reason"
        market_value_eur:
          type: integer
          example: 638000
        range_eur:
          $ref: "#/components/schemas/Range"
        price_per_sqm_eur:
          type: integer
          example: 7376
        confidence:
          type: string
          description: How reliable the indication is.
          enum:
            - low
            - medium
            - high
        basis:
          $ref: "#/components/schemas/ValuationBasis"
        created_at:
          type: string
          format: date-time
          example: 2026-08-20T09:52:00Z
```
