$LLMZone Docs

Available Models

Models currently available through the LLMZone API

Use any of these model IDs in the model field of your API requests.

Important: Currently, only Claude Opus 4.6 (claude-opus-4-6) is available. All other models are temporarily unavailable and will be re-enabled soon.

Models

Model IDProviderStatusDescription
claude-opus-4-6Anthropic✅ AvailableMost capable Claude model — best for complex tasks
claude-opus-4.6Anthropic✅ AvailableAlias for claude-opus-4-6
claude-4.6-opusAnthropic✅ AvailableAlias for claude-opus-4-6
claude-4.6-opus-highAnthropic✅ AvailableAlias for claude-opus-4-6
claude-4.6-opus-high-thinkingAnthropic✅ AvailableAlias for claude-opus-4-6 (extended thinking)
claude-sonnet-4-6Anthropic🔜 Coming SoonBalanced performance and speed
gpt-5.3-codex-thinking-midOpenAI🔜 Coming SoonAdvanced reasoning and code generation

Usage Example

curl "https://api.llmzone.net/v1/chat/completions" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-opus-4-6",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Model availability may change. Check this page for the latest list of supported models.

On this page