Skip to content
APMIX.AI

OpenAI · Model

GPT 6 Sol API

New

GPT 6 Sol answers at api.apmix.ai under the id below — one key and one monthly plan, on the OpenAI and Anthropic wire formats your tools already speak. No separate OpenAI account, no per-provider bill.

Model idopenai/gpt-6-solProMax
Get an API key

At a glance

Provider
OpenAI
Included in
Pro, Max — from $14.99/month
Weighted-token cost
2× — a 1,000-token exchange costs 2K weighted tokens
Context window
1.1M tokens
Reasoning
Yes — thinks before it answers
See what each plan buys on GPT 6 Sol

Call GPT 6 Sol

Set the model to gpt-6-sol in any OpenAI- or Anthropic-compatible client. Both base URLs accept the same apmix key.

OpenAI-compatible · Chat Completions
curl https://api.apmix.ai/v1/chat/completions \
  -H "Authorization: Bearer apx_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "gpt-6-sol", "messages": [{"role": "user", "content": "Hello"}]}'
Anthropic-compatible · Messages
curl https://api.apmix.ai/v1/messages \
  -H "x-api-key: apx_live_YOUR_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "Content-Type: application/json" \
  -d '{"model": "gpt-6-sol", "max_tokens": 1024, "messages": [{"role": "user", "content": "Hello"}]}'
Setup guides for Claude Code, Codex CLI, Cursor and more

Questions about GPT 6 Sol

Which plan includes GPT 6 Sol?
Pro, Max. Each plan is a monthly allowance of weighted tokens shared across every model and every key; GPT 6 Sol counts at 2× per token.
How do I use GPT 6 Sol in Claude Code, Codex CLI or Cursor?
Point the tool at apmix — https://api.apmix.ai/v1 for OpenAI-compatible clients, https://api.apmix.ai for Anthropic-compatible ones — with your apmix key, and set the model to gpt-6-sol. The Docs page has copy-paste setup for each tool.