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

# Health Check

> Return a simple health status.



## OpenAPI

````yaml get /health/
openapi: 3.1.0
info:
  title: MediaMagic Verify Integrations API
  description: An API for MediaMagic Verify integrations.
  version: 1.0.0
servers:
  - url: https://api.northell.io/nhl/prod/mediamagic-verify-integrations
    description: prod
security: []
paths:
  /health/:
    get:
      summary: Health Check
      description: Return a simple health status.
      operationId: health_check_health__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
                title: Response Health Check Health  Get

````