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

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

# Retrieve a valuation

`GET` `/valuations/{valuationId}`

Operation ID: `getValuation`

## Path parameters

- `valuationId` (string, required)

## Responses

- `200` - Valuation
- `404` - Record not found

## 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
paths:
  /valuations/{valuationId}:
    parameters:
      - name: valuationId
        in: path
        required: true
        schema:
          type: string
          example: val_3e18
    get:
      tags:
        - Valuations
      summary: Retrieve a valuation
      operationId: getValuation
      responses:
        "200":
          description: Valuation
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ValuationResult"
        "404":
          $ref: "#/components/responses/NotFound"
security:
  - apiKey: []
components:
  schemas:
    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
    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
    Error:
      type: object
      description: Uniform error format across all Real Estate Agency APIs.
      required:
        - code
        - message
      properties:
        code:
          type: string
          example: validation_failed
        message:
          type: string
          example: Too few comparable sales are available for this location.
        details:
          type: array
          items:
            $ref: "#/components/schemas/ErrorDetail"
    ErrorDetail:
      type: object
      properties:
        field:
          type: string
          example: basis.comparables_count
        reason:
          type: string
          example: missing
  responses:
    NotFound:
      description: Record not found
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/Error"
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: |
        Every call carries an API key in the `apikey` header. You generate the
        key in the Real Estate portal under "My Apps"; it's shown exactly once.

        Each key has the scopes it's allowed to use attached to it. If one is
        missing, the API responds with `403` and `code: "scope_missing"`; the
        missing scope is in `details[].field`.
```
