← All Models
Claude Opus 4.6
Anthropic's most capable model. Top-tier reasoning, coding, and analysis with a massive 1M token context window.
Web Search
Web Fetch
Code Execution
Specifications
| Provider | Anthropic |
| Category | Text |
| Context window | 200K tokens |
Pricing (Starter tier)
650.00 credits / 1M input tokens
3,250.00 credits / 1M output tokens
Higher tiers get volume discounts. See tiers
Quick Start
curl -X POST https://query.genx.sh/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-4-6",
"params": {
"prompt": "Explain quantum computing in simple terms",
"system_prompt": "You are a helpful science tutor",
"max_tokens": 1024
}
}'
Example Request Body
// POST /api/v1/generate
{
"model": "claude-opus-4-6",
"params": {
"prompt": "Explain quantum computing in simple terms",
"system_prompt": "You are a helpful science tutor",
"max_tokens": 1024
}
}