---
title: "Suchprofil"
url: "https://maklerportal.apim.eu/apis/interessenten/versions/b41f900a-058f-49ba-a5a3-a3864c83629f/schemas/Suchprofil"
---

> Full API specification: https://maklerportal.apim.eu/apis/interessenten/versions/b41f900a-058f-49ba-a5a3-a3864c83629f.md

# Suchprofil

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Interessenten & Leads
  version: 1.0.0
servers:
  - url: https://api.maklerportal.example/v1
    description: Produktion
  - url: https://sandbox.api.maklerportal.example/v1
    description: Sandbox
components:
  schemas:
    Suchprofil:
      type: object
      properties:
        typ:
          type: array
          items:
            type: string
            enum:
              - wohnung
              - haus
              - grundstueck
              - gewerbe
        orte:
          type: array
          items:
            type: string
            example: Hamburg
        zimmer_min:
          type: number
          format: float
          example: 3
        wohnflaeche_min_qm:
          type: number
          format: float
          example: 75
        kaufpreis_max_eur:
          type: integer
          example: 700000
        kaltmiete_max_eur:
          type: integer
          example: 1600
        finanzierungsnachweis:
          type: boolean
          example: false
```
