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

# Health check



## OpenAPI

````yaml /openapi.yaml get /health
openapi: 3.1.0
info:
  title: Meum Merchant API
  version: 1.0.0
  description: >
    Public merchant API for programmatic invoice creation and WooCommerce
    integration.

    Base URL: https://api.meum.io
  contact:
    name: Meum Support
    email: support@meum.io
    url: https://meum.io
servers:
  - url: https://api.meum.io
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Invoices
  - name: WooCommerce Integration
  - name: Health
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      operationId: getHealth
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
                  service:
                    type: string
                  worker_heartbeat:
                    type: object
                    properties:
                      status:
                        type: string
                      last_at:
                        type: string
                        format: date-time
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Store-scoped API key (sk_live_...)

````