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

# List Webhooks

> List webhook endpoints for your workspace.

<span data-api-safety-label="read-only"><Badge color="gray" size="sm" shape="pill">Read only</Badge></span>
Returns every webhook subscription registered on your workspace, paginated. Each entry includes the webhook's `id`, delivery `url`, subscribed `events`, active flag, creation timestamp, and a masked secret value. The original signing secret is never returned after creation. Use this endpoint to audit destinations, identify subscriptions to retire, or confirm configuration before a test.

## When to use this

* **Webhook audits**: render a table of every webhook with its destination, subscribed events, and active status.
* **Decommissioning checks**: find webhooks pointing at retired URLs before they accumulate failed deliveries.
* **Migration tooling**: enumerate webhooks before re-registering them under a new event taxonomy.
* **Operational dashboards**: combine with [Webhook retries and failures](/docs/api-access/webhook-retries-and-failures) to surface unhealthy subscriptions.

## Query parameters

| Parameter   | Description                                 |
| ----------- | ------------------------------------------- |
| `page`      | Page number, starting from 1.               |
| `limit`     | Results per page (default 10).              |
| `is_active` | Filter by active or inactive subscriptions. |

## Errors

* `403 Forbidden` is returned when the API key cannot read webhook configuration on this workspace.

## Related endpoints

* [Get Webhook Details](/docs/api-reference/v1/webhooks/get): fetch a single webhook's detail.
* [Create Webhook](/docs/api-reference/v1/webhooks/create): register a new subscription.
* [Update Webhook](/docs/api-reference/v1/webhooks/update): change URL, events, or active flag.
* [Delete Webhook](/docs/api-reference/v1/webhooks/delete): permanently remove a subscription.
* [Pagination](/docs/api-reference/pagination): how DialNexa list endpoints paginate.


## OpenAPI

````yaml GET /v1/user-webhooks
openapi: 3.0.0
info:
  title: DialNexa API
  description: Public `/v1` REST API for the DialNexa voice AI platform.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: Agents
  - name: Batch Calls
  - name: Calls
  - name: Knowledge Base
  - name: Languages
  - name: LLMs
  - name: Phone Numbers
  - name: Transcribers
  - name: Webhooks
  - name: Voices
  - name: Workflows
  - name: Workflow Leads
paths:
  /v1/user-webhooks:
    get:
      tags:
        - Webhooks
      summary: List Webhooks
      description: >-
        Returns paginated webhook registrations. Secrets are masked in all list
        responses.
      operationId: listWebhooks
      parameters:
        - name: limit
          required: false
          in: query
          description: 'Results per page (default: 10)'
          schema:
            example: 10
            type: number
        - name: page
          required: false
          in: query
          description: 'Page number (default: 1)'
          schema:
            example: 1
            type: number
      responses:
        '200':
          description: Webhooks returned successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Webhooks fetched successfully
                  webhooks:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: webhook_abc123
                        url:
                          type: string
                          example: https://webhook.site/your-endpoint
                        events:
                          type: array
                          items:
                            type: string
                          example:
                            - call.completed
                        is_active:
                          type: boolean
                          example: true
                        secret:
                          type: string
                          example: '********'
                          description: Always masked in list responses
                        createdAt:
                          type: string
                          format: date-time
                  page:
                    example: 1
                    type: number
                  limit:
                    example: 10
                    type: number
                  total:
                    type: number
                    example: 5
                  totalPages:
                    example: 1
                    type: number
              examples:
                success:
                  summary: Successful response
                  value:
                    total: 1
                    page: 1
                    limit: 10
                    webhooks:
                      - id: webhook_abc123
                        url: https://example.com/dialnexa/webhook
                        events:
                          - call.completed
                        is_active: true
                        createdAt: '2026-07-03T10:30:00.000Z'
        '401':
          description: Unauthorized - missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                error:
                  summary: 401 Unauthorized
                  value:
                    statusCode: 401
                    message: API key is missing or invalid
                    error: Unauthorized
        '403':
          description: Forbidden - API key does not have access to this organization.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                error:
                  summary: 403 Forbidden
                  value:
                    statusCode: 403
                    message: You do not have permission to access this resource
                    error: Forbidden
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                error:
                  summary: 500 Internal Server Error
                  value:
                    statusCode: 500
                    message: Internal server error
                    error: Internal Server Error
      security:
        - bearer: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        statusCode:
          type: integer
          example: 400
        message:
          oneOf:
            - type: string
            - type: array
              items:
                type: string
          example: phone_number must be a valid E.164 phone number
        error:
          type: string
          example: Bad Request
      required:
        - statusCode
        - message
        - error
  securitySchemes:
    bearer:
      scheme: bearer
      type: http

````