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

# API health and database counts



## OpenAPI

````yaml /openapi.json get /
openapi: 3.0.3
info:
  title: MKK Structured Data API
  version: 0.1.0
  description: >-
    Read-only JSON API for normalized MKK/VYK PDF extraction results, portfolio
    entries, and data-quality review queues.
servers:
  - url: https://mkk.celebi.me/api
security: []
tags:
  - name: System
  - name: Funds
  - name: Sections
  - name: Documents
  - name: Line Items
  - name: Portfolio
  - name: Stocks
  - name: Quality
  - name: Exports
paths:
  /:
    get:
      tags:
        - System
      summary: API health and database counts
      operationId: getRootHealth
      responses:
        '200':
          description: API health and aggregate counts.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
components:
  schemas:
    HealthResponse:
      type: object
      properties:
        status:
          type: string
          example: ok
        documents:
          type: integer
        funds:
          type: integer
        sections:
          type: integer
        line_items:
          type: integer
        line_item_values:
          type: integer
        portfolio_entries:
          type: integer
        portfolio_rows:
          type: integer
      required:
        - status

````