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

# List webhooks

> List your active delivery webhooks, optionally filtered by base. `webhookUrl` is your delivery URL; `tableId` is empty for base- and table-level events.



## OpenAPI

````yaml /openapi.json get /webhooks
openapi: 3.0.4
info:
  title: Simplified Webhooks Backend
  version: '1.0'
  description: >-
    API for Airtable webhooks, usage (record & storage counts), and
    change-monitoring audit logs.
  contact:
    name: API Support
    url: https://www.simplified-webhooks.com/contact-us
    email: contact@simplified-webhooks.com
  x-generated: backend/scripts/generate-openapi.ts — do not edit by hand
servers:
  - url: https://api.simplified-webhooks.com
    description: Main server
security: []
tags:
  - name: Webhooks
    description: Receive Airtable change notifications at your own HTTPS URL.
  - name: Usage
    description: Daily record counts and attachment storage for your Airtable bases.
  - name: Audit Log
    description: >-
      Log record and schema changes into a Changes table in your own Airtable
      Monitoring Base.
  - name: Airtable Helpers
    description: Look up base, table, and field ids from your connected Airtable account.
paths:
  /webhooks:
    get:
      tags:
        - Webhooks
      summary: List webhooks
      description: >-
        List your active delivery webhooks, optionally filtered by base.
        `webhookUrl` is your delivery URL; `tableId` is empty for base- and
        table-level events.
      operationId: listWebhooks
      parameters:
        - schema:
            type: string
            minLength: 1
            description: Only webhooks for this Airtable base.
          required: false
          description: Only webhooks for this Airtable base.
          name: baseId
          in: query
      responses:
        '200':
          description: Your active webhooks.
          content:
            application/json:
              schema:
                type: object
                properties:
                  webhooks:
                    type: array
                    items:
                      type: object
                      properties:
                        webhookId:
                          type: string
                        baseId:
                          type: string
                        event:
                          type: string
                        tableId:
                          type: string
                        columnId:
                          type: string
                          nullable: true
                        webhookUrl:
                          type: string
                        coalesceUpdates:
                          type: boolean
                        createdAt:
                          type: string
                        updatedAt:
                          type: string
                      required:
                        - webhookId
                        - baseId
                        - event
                        - tableId
                        - columnId
                        - webhookUrl
                        - coalesceUpdates
                        - createdAt
                        - updatedAt
                      additionalProperties: false
                required:
                  - webhooks
                additionalProperties: false
        '401':
          description: Unauthorized, authentication token is missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKey: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
        code:
          type: string
      required:
        - message
      additionalProperties: false
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: sk_...
      description: >-
        Your Simplified Webhooks API key, sent as a bearer token:
        `Authorization: Bearer sk_...`. Create API keys in your [profile
        settings](https://www.simplified-webhooks.com/profile-settings).

````