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

# Listing webhooks

> Returns a paginated list of all webhooks across your accessible forms and workspaces.



## OpenAPI

````yaml GET /webhooks
openapi: 3.0.1
info:
  title: OpenAPI
  description: Tally's API
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.tally.so
security:
  - bearerAuth: []
paths:
  /webhooks:
    get:
      tags:
        - Webhooks
      summary: List webhooks
      description: >-
        Returns a paginated list of all webhooks across your accessible forms
        and workspaces.
      parameters:
        - name: page
          in: query
          required: false
          description: 'Page number for pagination (default: 1)'
          schema:
            type: number
            minimum: 1
        - name: limit
          in: query
          required: false
          description: 'Number of webhooks per page (default: 25, max: 100)'
          schema:
            type: number
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: List of webhooks
          content:
            application/json:
              schema:
                type: object
                properties:
                  webhooks:
                    type: array
                    description: List of webhooks
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Webhook ID
                        formId:
                          type: string
                          description: Form ID the webhook is attached to
                        url:
                          type: string
                          description: The webhook endpoint URL
                        signingSecret:
                          type: string
                          nullable: true
                          description: Secret used to sign webhook payloads
                        httpHeaders:
                          type: array
                          nullable: true
                          description: Custom HTTP headers to include in webhook requests
                          items:
                            type: object
                            properties:
                              name:
                                type: string
                                description: Header name
                              value:
                                type: string
                                description: Header value
                        eventTypes:
                          type: array
                          description: Types of events this webhook subscribes to
                          items:
                            $ref: '#/components/schemas/EventType'
                        externalSubscriber:
                          type: string
                          nullable: true
                          description: External subscriber identifier
                        isEnabled:
                          type: boolean
                          description: Whether the webhook is enabled
                        lastSyncedAt:
                          type: string
                          format: date-time
                          nullable: true
                          description: When the webhook was last synced
                        createdAt:
                          type: string
                          format: date-time
                          description: When the webhook was created
                        updatedAt:
                          type: string
                          format: date-time
                          description: When the webhook was last updated
                  page:
                    type: number
                    description: Current page number
                  limit:
                    type: number
                    description: Number of webhooks per page
                  hasMore:
                    type: boolean
                    description: Whether there are more pages available
                  totalCount:
                    type: number
                    description: Total number of webhooks
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
        - bearerAuth: []
components:
  schemas:
    EventType:
      type: string
      enum:
        - FORM_RESPONSE
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````