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

# List trigger links

> Every live trigger link's record plus its hash PREFIX and its derived
``trigger_auth`` — never a raw token (none is stored; a listed link's QR is
unrecoverable by design). Returns ``{"items", "total"}``.



## OpenAPI

````yaml /openapi.json get /api/hooks/trigger-links
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/hooks/trigger-links:
    get:
      tags:
        - hooks
      summary: List trigger links
      description: >-
        Every live trigger link's record plus its hash PREFIX and its derived

        ``trigger_auth`` — never a raw token (none is stored; a listed link's QR
        is

        unrecoverable by design). Returns ``{"items", "total"}``.
      operationId: get_api_hooks_trigger_links
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                required:
                  - data
                type: object
          description: Success.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
        '501':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````