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

# Check production dependencies



## OpenAPI

````yaml /openapi.json get /api/health/deep
openapi: 3.1.0
info:
  title: MolQ API
  version: 1.0.0
  description: >-
    Live MolQ vault, market, agent, and execution state. Public endpoints are
    read-only. Operator endpoints require an explicitly configured credential.
servers:
  - url: https://api.molq.site
security: []
tags:
  - name: System
  - name: Portfolio
  - name: Agent
  - name: Execution
paths:
  /api/health/deep:
    get:
      tags:
        - System
      summary: Check production dependencies
      operationId: getDeepHealth
      responses:
        '200':
          description: All required production checks are healthy
        '503':
          description: One or more production checks are degraded

````