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

# Health

> Lightweight health check — no auth, no DB, no external calls.



## OpenAPI

````yaml /openapi.json get /api/sdk/health
openapi: 3.1.0
info:
  title: Simmer API
  description: Agent-native trading infrastructure for prediction markets.
  version: 1.0.0
servers:
  - url: https://api.simmer.markets
security: []
paths:
  /api/sdk/health:
    get:
      summary: Health
      description: Lightweight health check — no auth, no DB, no external calls.
      operationId: api_sdk_health_api_sdk_health_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````