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

# List webhook endpoints

> Returns all webhook subscriptions for the authenticated user's organization.



## OpenAPI

````yaml https://app.lyra.so/openapi.json get /webhook
openapi: 3.0.0
info:
  title: Lyra API
  version: '1.0'
servers:
  - url: https://app.lyra.so/api/v1
    description: Production server
  - url: http://localhost:3000/api/v1
    description: Development server
security:
  - LyraApiKey: []
  - OAuth2: []
tags:
  - name: Authentication
    description: Verify API keys and OAuth tokens
  - name: Meetings
    description: Create and manage Lyra meetings
  - name: Webhooks
    description: Manage webhook subscriptions
paths:
  /webhook:
    get:
      tags:
        - Webhooks
      summary: List webhook endpoints
      description: >-
        Returns all webhook subscriptions for the authenticated user's
        organization.
      responses:
        '200':
          description: List of webhooks
        '401':
          description: Missing or invalid token
        '403':
          description: Insufficient scope
        '500':
          description: Failed to list webhooks
      security:
        - LyraApiKey: []
        - OAuth2:
            - webhook.read
components:
  securitySchemes:
    LyraApiKey:
      type: http
      scheme: bearer
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://app.lyra.so/api/v1/oauth/authorize
          tokenUrl: https://app.lyra.so/api/v1/oauth/token
          scopes: {}

````