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

# List Webhook Subscriptions

> List every webhook subscription belonging to your account. The signing `secret` is never returned here — it is shown only once, when a subscription is created or its secret is rotated.



## OpenAPI

````yaml get /webhook-subscriptions
openapi: 3.0.0
info:
  title: Cover Whale API V1
  contact:
    name: Cover Whale API Team
  version: '1.0'
servers:
  - url: https://api.coverwhale.dev/v1
security:
  - AccessToken: []
tags:
  - name: Authentication
    description: Authenticating & Interacting with the API
paths:
  /webhook-subscriptions:
    get:
      tags:
        - Webhooks
      summary: List Webhook Subscriptions
      description: >-
        List every webhook subscription belonging to your account. The signing
        `secret` is never returned here — it is shown only once, when a
        subscription is created or its secret is rotated.
      operationId: listWebhookSubscriptions
      parameters:
        - name: Accept
          in: header
          required: true
          schema:
            type: string
          example: application/json
        - name: AccessToken
          in: header
          required: true
          schema:
            type: string
          example: eyJraWQiOiJnRk5oTTh2RnRKWXVDVXU1S........
      responses:
        '200':
          description: Your subscriptions
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      example: 42
                    company_id:
                      type: integer
                      example: 6042
                    endpoint_url:
                      type: string
                      example: https://hooks.yourapp.com/coverwhale
                    event_types:
                      type: array
                      items:
                        type: string
                      example:
                        - submission.bind_completed
                        - submission.canceled
                    active:
                      type: boolean
                      example: true
                    secret_rotated_at:
                      type: string
                      format: date-time
                      nullable: true
                      example: null
                    created_at:
                      type: string
                      format: date-time
                      example: '2026-07-14T12:00:00+00:00'
                    updated_at:
                      type: string
                      format: date-time
                      example: '2026-07-14T12:00:00+00:00'
components:
  securitySchemes:
    AccessToken:
      type: apiKey
      description: >-
        AWS Cognito access token obtained from the /authentication endpoint.
        Token expires after 3600 seconds.
      name: AccessToken
      in: header

````