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

# Health check

> Returns the health status of the API



## OpenAPI

````yaml api-reference/openapi.json get /health
openapi: 3.0.0
info:
  title: FileJar Core API
  version: 1.0.0
  description: >-
    API documentation for FileJar Core API - File upload and organization
    management
servers:
  - url: http://localhost:8787
    description: Local development server
  - url: https://core-api.filejar.dev
    description: Production server
security: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Upload
    description: File upload endpoints
  - name: Files
    description: File retrieval and management endpoints
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns the health status of the API
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  time:
                    type: string
                    format: date-time
                  version:
                    type: string

````