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

# Listing webhooks



## OpenAPI

````yaml GET /webhooks
openapi: 3.0.1
info:
  title: API V1
  version: v1
servers:
  - url: https://app.oneform.one/api/v1
security:
  - bearer_auth: []
paths:
  /webhooks:
    get:
      tags:
        - Webhooks
      summary: List webhooks
      parameters:
        - name: form_id
          in: query
          required: false
          description: Filter webhooks by form ID
          schema:
            type: string
        - name: page
          in: query
          description: 'Page number (default: 1)'
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: limit
          in: query
          description: 'Items per page (default: 50)'
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 500
            default: 50
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookList'
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Unauthorized
      security:
        - bearer_auth: []
components:
  schemas:
    WebhookList:
      type: object
      properties:
        webhooks:
          type: array
          items:
            $ref: '#/components/schemas/Webhook'
          description: Array of webhook objects
        page:
          type: integer
          example: 1
          description: Current page number
        limit:
          type: integer
          example: 50
          description: Number of items per page
        total:
          type: integer
          example: 10
          description: Total number of webhooks
        has_next:
          type: boolean
          example: false
          description: Whether there are more pages available
    Webhook:
      type: object
      properties:
        id:
          type: string
          example: webhook_123
        name:
          type: string
          example: My Webhook
        form_id:
          type: string
          example: form_123
        url:
          type: string
          example: https://example.com/webhook
        signing_secret:
          type: string
          example: secret_key
          nullable: true
        enabled:
          type: boolean
          example: true
        subscriber:
          type: string
          example: n8n
          nullable: true
        created_at:
          type: string
          format: date-time
          example: '2024-01-01T12:00:00Z'
        updated_at:
          type: string
          format: date-time
          example: '2024-01-02T12:00:00Z'
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: Enter your API key

````