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

# Health check

> Returns the health of the API



## OpenAPI

````yaml api-docs/app-team/notifications.json get /health
openapi: 3.1.1
info:
  title: Notification Service API
  version: 1.0.0
  description: >-
    Notification Service API for real-time notifications via Server-Sent Events
    (SSE) for Arc and Atlas applications
servers:
  - url: http://localhost:4055
    description: Local Development
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns the health of the API
      responses:
        '200':
          description: Health check response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  timestamp:
                    type: string
                required:
                  - status
                  - timestamp

````