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

# Readiness Check

> Readiness check including database connectivity.



## OpenAPI

````yaml get /health/ready
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/ready:
    get:
      tags:
        - health
      summary: Readiness Check
      description: Readiness check including database connectivity.
      operationId: readiness_check_health_ready_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReadinessCheckResponse'
components:
  schemas:
    ReadinessCheckResponse:
      properties:
        status:
          type: string
          title: Status
          description: '''ready'' or ''not ready'''
        database:
          $ref: '#/components/schemas/DatabaseStatusResponse'
          description: Database connectivity
        services:
          additionalProperties:
            type: string
          type: object
          title: Services
          description: Status of downstream services, keyed by name
      type: object
      required:
        - status
        - database
        - services
      title: ReadinessCheckResponse
      description: Readiness probe — reports database connectivity and downstream services.
    DatabaseStatusResponse:
      properties:
        connected:
          type: boolean
          title: Connected
          description: True if the database is reachable
      type: object
      required:
        - connected
      title: DatabaseStatusResponse
      description: Connectivity status for a backing database.

````