---
title: "Anfragen auflisten"
url: "https://maklerportal.apim.eu/apis/interessenten/versions/b41f900a-058f-49ba-a5a3-a3864c83629f/operations/anfragenAuflisten"
---

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

# Anfragen auflisten

`GET` `/anfragen`

Operation ID: `anfragenAuflisten`

## Query parameters

- `objekt_id` (string, optional)
- `status` (string, optional)

## Responses

- `200` - Trefferliste

## 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
paths:
  /anfragen:
    get:
      tags:
        - Anfragen
      summary: Anfragen auflisten
      operationId: anfragenAuflisten
      parameters:
        - name: objekt_id
          in: query
          schema:
            type: string
            example: obj_8f2c1a
        - name: status
          in: query
          schema:
            $ref: "#/components/schemas/Anfragestatus"
      responses:
        "200":
          description: Trefferliste
          content:
            application/json:
              schema:
                type: object
                properties:
                  daten:
                    type: array
                    items:
                      $ref: "#/components/schemas/Anfrage"
                  seite:
                    $ref: "#/components/schemas/Seite"
security:
  - apiKey: []
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
    Seite:
      type: object
      description: Cursor-basierte Paginierung.
      properties:
        anzahl:
          type: integer
          example: 25
        gesamt:
          type: integer
          example: 138
        cursor_naechste:
          type: string
          nullable: true
          example: eyJzIjoyNX0
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: >
        Jeder Aufruf trägt einen API-Schlüssel im Header `apikey`. Den Schlüssel

        erzeugen Sie im Maklerportal unter "Meine Anwendungen"; er wird genau
        einmal

        angezeigt.


        An jedem Schlüssel hängen die Scopes, die er nutzen darf. Fehlt einer,

        antwortet die API mit `403` und `code: "scope_fehlt"`; der fehlende
        Scope

        steht in `details[].feld`.
```
