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

# List Webhooks

> Retrieve all webhooks for the authenticated organization



## OpenAPI

````yaml https://api.coinvoyage.io/v2/openapi.json get /webhooks
openapi: 3.1.0
info:
  title: CoinVoyage API
  description: Cryptocurrency payment processing API
  version: 2.2.0
servers:
  - url: https://api.coinvoyage.io/v2
security: []
paths:
  /webhooks:
    get:
      tags:
        - webhooks
      summary: List Webhooks
      description: Retrieve all webhooks for the authenticated organization
      operationId: listWebhooks
      parameters:
        - description: >-
            Authorization header format:
            'APIKey=<api_key>,signature=<signature>,timestamp=<unix_timestamp>'
          in: header
          name: Authorization-Signature
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WebhookResponse'
                type: array
          description: List of webhooks
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Unauthorized - Authentication required
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Server Error
      security:
        - Authorization: []
components:
  schemas:
    WebhookResponse:
      example:
        active: true
        id: cuidjkhg3e289y74u5t6v
        subscription_events:
          - ORDER_CREATED
          - ORDER_COMPLETED
        url: https://example.com/webhook
        webhook_secret: whsec_xxxxx
      properties:
        id:
          example: cuidjkhg3e289y74u5t6v
          type: string
        url:
          example: https://example.com/webhook
          type: string
        webhook_secret:
          example: whsec_xxxxx
          type: string
        subscription_events:
          example:
            - ORDER_CREATED
            - ORDER_COMPLETED
          items:
            type: string
          type: array
        active:
          example: true
          type: boolean
      required:
        - id
        - url
        - active
      type: object
    ErrorResponse:
      example:
        code: 400
        error: Bad Request
        message: Invalid request parameters
      properties:
        error:
          example: Bad Request
          type: string
        message:
          example: Invalid request parameters
          type: string
        code:
          example: 400
          format: int64
          type: integer
        details:
          anyOf:
            - type: string
            - type: number
            - type: object
      required:
        - error
        - message
        - code
      type: object

````