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

# Health check endpoint

> Returns a simple "ok" response to indicate the service is running



## OpenAPI

````yaml /openapi.json get /health
openapi: 3.1.0
info:
  title: 'ogis: Open Graph Images as a Service'
  description: Generate Open Graph images dynamically via URL parameters
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://img.ogis.dev
security: []
tags:
  - name: image
    description: Image generation endpoints
  - name: monitoring
    description: Service monitoring and health checks
paths:
  /health:
    get:
      tags:
        - monitoring
      summary: Health check endpoint
      description: Returns a simple "ok" response to indicate the service is running
      operationId: health_check
      responses:
        '200':
          description: Service is healthy
          content:
            text/plain:
              schema:
                type: string

````