> ## Documentation Index
> Fetch the complete documentation index at: https://dev.nimbo-x.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /webhooks



## OpenAPI

````yaml /openapi/nimbo_webhooks.yml get /webhooks
openapi: 3.0.0
info:
  title: Nimbo webhooks
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /webhooks:
    get:
      summary: GET /webhooks
      operationId: legacy_nimbo_webhooks_get__webhooks
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  webhooks:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: integer
                        organization_id:
                          type: integer
                        url:
                          type: string
                          format: uri
                        event_topic:
                          type: string
                        event_name:
                          type: string
                        authentication_data:
                          type: object
                          properties:
                            secret:
                              type: string
                        status:
                          type: string
                        created_at:
                          type: string
                          format: date-time
                        deleted_at:
                          nullable: true
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````