> ## Documentation Index
> Fetch the complete documentation index at: https://veridical-dev.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Health

> Liveness + light readiness signal (queue depth / processed / failed counts) PLUS the
in-flight-review staleness signal (opus review F101): a review still running past the wall
budget is an ORPHANED thread from a hung review; a climbing orphan count means the worker is
wedged and an orchestrator should restart it. status is 'degraded' whenever any orphan exists.



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.1.0
info:
  title: Veridical API
  version: 1.0.0
servers:
  - url: https://api.veridical.dev
security: []
paths:
  /health:
    get:
      summary: Health
      description: >-
        Liveness + light readiness signal (queue depth / processed / failed
        counts) PLUS the

        in-flight-review staleness signal (opus review F101): a review still
        running past the wall

        budget is an ORPHANED thread from a hung review; a climbing orphan count
        means the worker is

        wedged and an orchestrator should restart it. status is 'degraded'
        whenever any orphan exists.
      operationId: health_health_get
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Health Health Get
                type: object
          description: Successful Response
      security: []

````