> ## Documentation Index
> Fetch the complete documentation index at: https://gomodel-docs-benchmark-writeup-and-tooling.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Readiness check



## OpenAPI

````yaml /openapi.json get /health/ready
openapi: 3.0.0
info:
  description: >-
    AI gateway routing requests to multiple LLM providers (OpenAI, Anthropic,
    Gemini, Groq, OpenRouter, DeepSeek, Z.ai, xAI, MiniMax, Xiaomi MiMo,
    OpenCode Go, Oracle, Ollama, Bailian). Drop-in OpenAI-compatible API.
  title: GoModel API
  contact: {}
  version: '1.0'
servers:
  - url: '{base_url}'
    description: Edit the base URL to point at your GoModel deployment.
    variables:
      base_url:
        default: http://localhost:8080
        description: Your GoModel deployment URL
security: []
paths:
  /health/ready:
    get:
      tags:
        - system
      summary: Readiness check
      responses:
        '200':
          description: ready or degraded
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '503':
          description: not ready
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true

````