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

# Health check

> Returns the health of the Workflows Service API



## OpenAPI

````yaml api-docs/app-team/workflows.json get /health
openapi: 3.1.1
info:
  title: Workflows Service API
  version: 1.0.0
  description: >-
    Workflows Service API — triggers and monitors Trigger.dev workflow tasks.
    Arc and Atlas APIs call this service through Kong Gateway.
servers:
  - url: http://localhost:4060
    description: Local Development
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns the health of the Workflows Service API
      responses:
        '200':
          description: Health check response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  timestamp:
                    type: string
                required:
                  - status
                  - timestamp

````