> ## 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.

# Liveness Check

> Liveness check for container orchestration.



## OpenAPI

````yaml get /health/live
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/live:
    get:
      tags:
        - health
      summary: Liveness Check
      description: Liveness check for container orchestration.
      operationId: liveness_check_health_live_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LivenessCheckResponse'
components:
  schemas:
    LivenessCheckResponse:
      properties:
        status:
          type: string
          title: Status
          description: '''alive'' when the process is up'
        timestamp:
          type: string
          title: Timestamp
          description: Server timestamp (ISO 8601)
      type: object
      required:
        - status
        - timestamp
      title: LivenessCheckResponse
      description: Liveness probe for container orchestration.

````