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

# List Webhooks

> List all registered webhooks for the authenticated client

Returns every webhook currently registered under your API key. The `secret` is **not** included in this response — it was only available at creation time.

See [Webhooks](/api-reference/webhooks) for the full event catalog and payload formats.


## OpenAPI

````yaml /api-reference/openapi.json GET /webhooks
openapi: 3.0.3
info:
  title: Leokit API
  version: 1.0.0
  description: API reference for Leokit
servers:
  - url: https://api.leokit.dev
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /webhooks:
    get:
      summary: List webhooks
      responses:
        '200':
          description: Webhook list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookListResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  schemas:
    WebhookListResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: object
          properties:
            webhooks:
              type: array
              items:
                $ref: '#/components/schemas/WebhookRecord'
    WebhookRecord:
      type: object
      required:
        - id
        - url
        - events
        - type
        - is_active
        - created_at
      properties:
        id:
          type: string
          format: uuid
        url:
          type: string
          format: uri
        events:
          type: array
          items:
            type: string
        type:
          type: string
          enum:
            - standard
            - discord
            - slack
        is_active:
          type: boolean
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        secret:
          type: string
          description: Only returned on creation. Save it immediately.
    Error:
      type: object
      description: Generic error payload.
      properties:
        message:
          type: string
        code:
          type: string
  responses:
    ErrorResponse:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Api-Key
      description: 'Demo API-Key (Sandbox): 7037d2b3-9c76-4f62-b730-c544f7570fa4'

````