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

# List Webhook

> List all webhook endpoints associated with the organization.
Requires a valid API key.



## OpenAPI

````yaml GET /webhooks
openapi: 3.1.0
info:
  title: Public API v1
  description: >-
    Public API v1 requiring API keys.


    **Timestamps:** All datetime fields in API responses are returned in UTC
    using ISO 8601 format (e.g., `2024-01-15T14:30:00Z`). When filtering by date
    parameters, provide timestamps in ISO 8601 format.
  version: 0.1.0
servers:
  - url: https://api.prod.usesimple.ai/api/v1
    description: Production API Server
security: []
paths:
  /webhooks:
    get:
      tags:
        - Webhooks
      summary: List Webhooks
      description: |-
        List all webhook endpoints associated with the organization.
        Requires a valid API key.
      operationId: list_webhooks_webhooks_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  endpoints:
                    type: array
                    items:
                      $ref: '#/components/schemas/WebhookResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    WebhookResponse:
      type: object
      required:
        - endpoint_id
        - url
        - event_types
        - created_at
      properties:
        endpoint_id:
          type: string
          title: Endpoint ID
          description: Unique identifier for the webhook endpoint
        url:
          type: string
          format: uri
          title: URL
          description: The URL where webhook events will be sent
        event_types:
          type: array
          items:
            type: string
            enum:
              - call.started
              - call.completed
              - transcript.updated
          title: Event Types
          description: The types of events the webhook is subscribed to
        description:
          type: string
          title: Description
          description: Description of the webhook endpoint
        disabled:
          type: boolean
          title: Disabled
          description: Whether the webhook is disabled
        created_at:
          type: string
          format: date-time
          title: Created At
          description: When the webhook endpoint was created
      title: Webhook Response
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization

````