---
title: "BewertungAnfordern"
url: "https://maklerportal.apim.eu/apis/marktwertermittlung/versions/cb8e224b-f566-49d5-9923-11559fca3319/schemas/BewertungAnfordern"
---

> Full API specification: https://maklerportal.apim.eu/apis/marktwertermittlung/versions/cb8e224b-f566-49d5-9923-11559fca3319.md

# BewertungAnfordern

Genau eines von `objekt_id` oder `merkmale` muss gesetzt sein.

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Marktwertermittlung
  version: 1.0.0
servers:
  - url: https://api.maklerportal.example/v1
    description: Produktion
  - url: https://sandbox.api.maklerportal.example/v1
    description: Sandbox
components:
  schemas:
    Anlass:
      type: string
      enum:
        - erstgespraech
        - verkauf
        - vermietung
        - finanzierung
        - erbschaft
      example: verkauf
    Merkmale:
      type: object
      description: Freie Objektbeschreibung, wenn kein Objektdatensatz vorliegt.
      required:
        - typ
        - plz
        - wohnflaeche_qm
      properties:
        typ:
          type: string
          enum:
            - wohnung
            - haus
            - grundstueck
            - gewerbe
        plz:
          type: string
          pattern: ^[0-9]{5}$
          example: "20251"
        wohnflaeche_qm:
          type: number
          format: float
          example: 86.5
        grundstuecksflaeche_qm:
          type: number
          format: float
          example: 412
        zimmer:
          type: number
          format: float
          example: 3
        baujahr:
          type: integer
          example: 1908
        zustand:
          type: string
          enum:
            - renovierungsbeduerftig
            - gepflegt
            - modernisiert
            - neuwertig
        ausstattung:
          type: string
          enum:
            - einfach
            - normal
            - gehoben
            - luxus
        balkon:
          type: boolean
          example: true
        aufzug:
          type: boolean
          example: false
        stellplatz:
          type: boolean
          example: false
    BewertungAnfordern:
      type: object
      required:
        - anlass
      description: Genau eines von `objekt_id` oder `merkmale` muss gesetzt sein.
      properties:
        objekt_id:
          type: string
          example: obj_8f2c1a
        anlass:
          $ref: "#/components/schemas/Anlass"
        merkmale:
          $ref: "#/components/schemas/Merkmale"
```
