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

# Health Check

> Basic health check endpoint.



## OpenAPI

````yaml get /health
openapi: 3.1.0
info:
  title: Flow API
  description: Content-addressing backend with Git-like versioning
  version: 1.0.0
servers:
  - url: https://api.yertle.com
    description: Production
security: []
paths:
  /health:
    get:
      tags:
        - health
      summary: Health Check
      description: Basic health check endpoint.
      operationId: health_check_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthCheckResponse'
components:
  schemas:
    HealthCheckResponse:
      properties:
        status:
          type: string
          title: Status
          description: Service status (e.g. 'healthy')
        message:
          type: string
          title: Message
          description: Human-readable status message
        version:
          type: string
          title: Version
          description: Deployed git version (e.g. 'a17059ab-b2')
        lambda_version:
          type: string
          title: Lambda Version
          description: AWS Lambda numbered version serving this request (e.g. '42')
        environment:
          type: string
          title: Environment
          description: Environment name (dev/prod)
      type: object
      required:
        - status
        - message
        - version
        - lambda_version
        - environment
      title: HealthCheckResponse
      description: Basic liveness/version signal for the API.

````