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

# List Webhooks

> List active webhook registrations belonging to the caller.

Secrets are NOT included — only shown at creation time (DYN-405).



## OpenAPI

````yaml /api-reference/openapi.json get /v1/webhooks
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/webhooks:
    get:
      summary: List Webhooks
      description: |-
        List active webhook registrations belonging to the caller.

        Secrets are NOT included — only shown at creation time (DYN-405).
      operationId: list_webhooks_v1_webhooks_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WebhookListResponse'
                type: array
                title: Response List Webhooks V1 Webhooks Get
      security:
        - APIKeyHeader: []
components:
  schemas:
    WebhookListResponse:
      properties:
        id:
          type: string
          title: Id
        url:
          type: string
          title: Url
        events:
          items:
            $ref: '#/components/schemas/WebhookEventType'
          type: array
          title: Events
        active:
          type: boolean
          title: Active
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - url
        - events
        - active
        - created_at
      title: WebhookListResponse
      description: Response for GET /v1/webhooks — secret excluded (DYN-405).
    WebhookEventType:
      type: string
      enum:
        - trust.score.changed
        - sanctions.match.new
        - trust.level.downgrade
        - certificate.expired
      title: WebhookEventType
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````