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

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

# Anfrage

## 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:
    Anfragestatus:
      type: string
      enum:
        - neu
        - bewertet
        - eingeladen
        - abgesagt
        - abgeschlossen
      example: bewertet
    Anfrage:
      type: object
      properties:
        id:
          type: string
          example: anf_5c02
        objekt_id:
          type: string
          example: obj_8f2c1a
        interessent_id:
          type: string
          example: int_71ab
        status:
          $ref: "#/components/schemas/Anfragestatus"
        kanal:
          type: string
          example: website
        nachricht:
          type: string
          example: Guten Tag, ist die Wohnung noch verfügbar? Wir würden sie gern
            besichtigen.
        eingegangen_am:
          type: string
          format: date-time
          example: 2026-08-19T17:05:31Z
```
