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

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

# RentIndexValue

## 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:
    RentIndexValue:
      type: object
      properties:
        city:
          type: string
          example: Springfield
        as_of:
          type: string
          format: date
          example: 2025-01-01
        net_rent_per_sqm_eur:
          type: object
          properties:
            low:
              type: number
              format: float
              example: 9.4
            average:
              type: number
              format: float
              example: 11.8
            high:
              type: number
              format: float
              example: 14.6
        range_note:
          type: string
          example: Values apply to a typical residential location without adjustments.
```
