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

# Get All Webhooks

> Retrieve a list of all webhooks for the current workspace



## OpenAPI

````yaml get /webhooks
openapi: 3.1.0
info:
  title: Management API
  version: '1.0'
servers:
  - url: https://app.activecalculator.com/api/v1
security:
  - sec0: []
paths:
  /webhooks:
    get:
      summary: Get All Webhooks
      description: Retrieve a list of all webhooks for the current workspace
      operationId: get-all-webhooks
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: |-
                    {
                      "data": [
                        {
                          "id": "webhook123",
                          "name": "Webhook One",
                          "createdAt": "2024-01-15T10:30:00.000Z",
                          "updatedAt": "2024-01-15T11:45:00.000Z",
                          "url": "https://example.com/webhook1",
                          "source": "user",
                          "workspaceId": "workspace456",
                          "calculators": [
                            {
                              "id": "calc789",
                              "name": "Calculator A"
                            },
                            {
                              "id": "calc101",
                              "name": "Calculator B"
                            },
                            {
                              "id": "calc202",
                              "name": "Calculator C"
                            }
                          ],
                          "triggers": [
                            {
                              "type": "newSubmission",
                              "webhookId": "webhook123"
                            }
                          ]
                        },
                        {
                          "id": "webhook456",
                          "name": "Webhook Two",
                          "createdAt": "2024-01-20T14:20:00.000Z",
                          "updatedAt": "2024-01-20T14:20:00.000Z",
                          "url": "https://example.com/webhook2",
                          "source": "user",
                          "workspaceId": "workspace456",
                          "calculators": [
                            {
                              "id": "calc789",
                              "name": "Calculator A"
                            }
                          ],
                          "triggers": [
                            {
                              "type": "newSubmission",
                              "webhookId": "webhook456"
                            }
                          ]
                        }
                      ]
                    }
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: webhook123
                        name:
                          type: string
                          example: Webhook One
                        createdAt:
                          type: string
                          example: '2024-01-15T10:30:00.000Z'
                        updatedAt:
                          type: string
                          example: '2024-01-15T11:45:00.000Z'
                        url:
                          type: string
                          example: https://example.com/webhook1
                        source:
                          type: string
                          example: user
                        workspaceId:
                          type: string
                          example: workspace456
                        calculators:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                example: calc789
                              name:
                                type: string
                                example: Calculator A
                        triggers:
                          type: array
                          items:
                            type: object
                            properties:
                              type:
                                type: string
                                example: newSubmission
                              webhookId:
                                type: string
                                example: webhook123
        '400':
          description: '400'
          content:
            text/plain:
              examples:
                Result:
                  value: ''
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: x-ac-api-key

````