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

# API Health



## OpenAPI

````yaml GET /health
openapi: 3.0.0
info:
  version: 1.0.0
  title: NicheOK API
servers: []
security: []
paths:
  /health:
    get:
      tags:
        - Platform
      responses:
        '200':
          description: API health check
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonHealthCheckResponse'
components:
  schemas:
    CommonHealthCheckResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
      required:
        - success

````