---
title: "Abrechnung abrufen"
url: "https://maklerportal.apim.eu/apis/provisionsabrechnung/versions/66d24f0e-eec7-434f-880d-19abbf6211e5/operations/abrechnungAbrufen"
---

> Full API specification: https://maklerportal.apim.eu/apis/provisionsabrechnung/versions/66d24f0e-eec7-434f-880d-19abbf6211e5.md

# Abrechnung abrufen

`GET` `/abrechnungen/{abrechnungId}`

Operation ID: `abrechnungAbrufen`

## Path parameters

- `abrechnungId` (string, required)

## Responses

- `200` - Abrechnung
- `404` - Datensatz nicht gefunden

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Provisionsabrechnung
  version: 1.0.0
servers:
  - url: https://api.maklerportal.example/v1
    description: Produktion
  - url: https://sandbox.api.maklerportal.example/v1
    description: Sandbox
paths:
  /abrechnungen/{abrechnungId}:
    parameters:
      - name: abrechnungId
        in: path
        required: true
        schema:
          type: string
          example: abr_7c53
    get:
      tags:
        - Abrechnungen
      summary: Abrechnung abrufen
      operationId: abrechnungAbrufen
      responses:
        "200":
          description: Abrechnung
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Abrechnung"
        "404":
          $ref: "#/components/responses/NichtGefunden"
security:
  - apiKey: []
components:
  schemas:
    Abrechnung:
      type: object
      properties:
        id:
          type: string
          example: abr_7c53
        objekt_id:
          type: string
          example: obj_8f2c1a
        status:
          $ref: "#/components/schemas/Abrechnungsstatus"
        geschaeftsart:
          $ref: "#/components/schemas/Geschaeftsart"
        bemessungsgrundlage_eur:
          type: integer
          example: 645000
        positionen:
          type: array
          items:
            $ref: "#/components/schemas/Position"
        rechnung_id:
          type: string
          example: rec_a920
        faellig_am:
          type: string
          format: date
          example: 2026-08-28
        bezahlt_eur:
          type: number
          format: float
          example: 0
        erstellt_am:
          type: string
          format: date-time
          example: 2026-08-15T07:30:00Z
    Abrechnungsstatus:
      type: string
      enum:
        - entwurf
        - offen
        - teilweise_bezahlt
        - bezahlt
        - storniert
      example: offen
    Geschaeftsart:
      type: string
      enum:
        - verkauf
        - vermietung
        - gewerbevermietung
      example: verkauf
    Position:
      type: object
      properties:
        partei:
          type: string
          enum:
            - kaeufer
            - verkaeufer
            - mieter
            - vermieter
        satz_prozent:
          type: number
          format: float
          example: 3.57
        netto_eur:
          type: number
          format: float
          example: 19353.36
        umsatzsteuer_eur:
          type: number
          format: float
          example: 3677.14
        brutto_eur:
          type: number
          format: float
          example: 23030.5
    Fehler:
      type: object
      description: Einheitliches Fehlerformat aller Maklerportal-APIs.
      required:
        - code
        - nachricht
      properties:
        code:
          type: string
          example: validierung_fehlgeschlagen
        nachricht:
          type: string
          example: Für die Veröffentlichung fehlen Pflichtangaben aus dem Energieausweis.
        details:
          type: array
          items:
            $ref: "#/components/schemas/Fehlerdetail"
    Fehlerdetail:
      type: object
      properties:
        feld:
          type: string
          example: energieausweis.endenergiebedarf_kwh
        grund:
          type: string
          example: fehlt
  responses:
    NichtGefunden:
      description: Datensatz nicht gefunden
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/Fehler"
  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`.
```
