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

# Health Check



## OpenAPI

````yaml /api-reference/openapi.json get /health
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /health:
    get:
      summary: Health Check
      operationId: health_check_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
components:
  schemas:
    HealthResponse:
      properties:
        status:
          type: string
          title: Status
          default: ok
        version:
          type: string
          title: Version
        uptime_seconds:
          type: integer
          minimum: 0
          title: Uptime Seconds
          description: Seconds since API started
        sources:
          additionalProperties:
            $ref: '#/components/schemas/SourceStatus'
          type: object
          title: Sources
        cache_sizes:
          additionalProperties:
            type: integer
          type: object
          title: Cache Sizes
          description: In-memory cache entry counts by service
      type: object
      required:
        - version
        - uptime_seconds
      title: HealthResponse
      description: Health check response.
    SourceStatus:
      properties:
        name:
          type: string
          title: Name
        status:
          type: string
          title: Status
          description: >-
            ready, not_configured, unavailable, degraded, or unknown (not yet
            probed)
        latency_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Latency Ms
      type: object
      required:
        - name
        - status
      title: SourceStatus

````