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

# Readyz

> Real readiness: probes the backing store. Returns 503 when not ready.

This used to return a hardcoded {"status":"ready","checks":{"store":"ok"}}
— a dead database still reported healthy, so orchestrators would route
traffic to a broken replica and no probe would ever fire.



## OpenAPI

````yaml /openapi.json get /readyz
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /readyz:
    get:
      tags:
        - ops
      summary: Readyz
      description: >-
        Real readiness: probes the backing store. Returns 503 when not ready.


        This used to return a hardcoded
        {"status":"ready","checks":{"store":"ok"}}

        — a dead database still reported healthy, so orchestrators would route

        traffic to a broken replica and no probe would ever fire.
      operationId: readyz_readyz_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response

````