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

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

# Abrechnung

## 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
components:
  schemas:
    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
    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
```
