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

# Triggers Health Check

> Comprehensive health check endpoint for trigger system.

Checks all trigger system components including:
- Database connectivity
- Temporal schedule manager
- Webhook manager
- Execution metrics

Returns:
    Dictionary with detailed health status information



## OpenAPI

````yaml /api-reference/openapi.json get /v1/triggers/health
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/triggers/health:
    get:
      tags:
        - v1
        - protected
        - triggers
      summary: Triggers Health Check
      description: |-
        Comprehensive health check endpoint for trigger system.

        Checks all trigger system components including:
        - Database connectivity
        - Temporal schedule manager
        - Webhook manager
        - Execution metrics

        Returns:
            Dictionary with detailed health status information
      operationId: triggers_health_check_v1_triggers_health_get
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Triggers Health Check V1 Triggers Health Get
                type: object
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````