> ## Documentation Index
> Fetch the complete documentation index at: https://docs.business-os.de/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Webhook URL

> Gibt die aktuell konfigurierte Webhook-URL der Organisation zurück.

**Cost:** 0 Credits



## OpenAPI

````yaml GET /v2/banking/webhook-url
openapi: 3.1.0
info:
  title: Business OS API
  description: >-
    API für Business OS – Zugang zu DATEV und Banking Enterprise-Schnittstellen.
    Alle Endpoints erfordern einen API Key im `x-api-key` Header. Credits werden
    pro API-Call abgezogen.
  version: 2.0.0
  contact:
    name: Business OS Support
    email: impressum@business-os.de
    url: https://business-os.de/kontakt
servers:
  - url: https://api.business-os.de
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: DATEV Allgemein
    description: >-
      Modulübergreifende DATEV-Endpunkte (z. B. Abo-/Service-Diagnose für
      Mandanten)
  - name: DATEV DUO
    description: DATEV Unternehmen Online — Kassenbuch, Belegbilder und Buchungsvorschläge
  - name: DATEV ReWe - Write
    description: 'DATEV Rechnungswesen — Write: Buchungen, Kontakte, Belegtypen, Steuersätze'
  - name: DATEV ReWe - Read
    description: >-
      DATEV Rechnungswesen — Read (Export): Geschäftsjahre und weitere
      Lesemodule
  - name: Banking AIS
    description: >-
      Account Information Services — Verbindungen, Kontostände und Transaktionen
      verwalten
  - name: Banking PIS
    description: Payment Initiation Services — Zahlungen ausführen und Status abrufen
  - name: Banking Webhooks
    description: Webhook-Konfiguration für Echtzeit-Benachrichtigungen
paths:
  /v2/banking/webhook-url:
    get:
      tags:
        - Banking Webhooks
      summary: Get Webhook URL
      description: |-
        Gibt die aktuell konfigurierte Webhook-URL der Organisation zurück.

        **Cost:** 0 Credits
      responses:
        '200':
          description: Aktuelle Webhook-URL
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookUrlResponse'
        '401':
          description: Ungültiger API Key
components:
  schemas:
    WebhookUrlResponse:
      type: object
      properties:
        webhook_url:
          type: string
          format: uri
          nullable: true
          description: Konfigurierte Webhook-URL oder null
          example: https://hook.eu1.make.com/abc123
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Dein Business OS API Key. Erstelle einen unter
        [app.business-os.de](https://app.business-os.de/) → API Keys.

````