

In
$6.5 / 1M tokens Out
$39 / 1M tokens 

Text to Speech
const { OpenAI } = require('openai');
const api = new OpenAI({
baseURL: 'https://api.ai.cc/v1',
apiKey: '',
});
const main = async () => {
const result = await api.chat.completions.create({
model: 'openai/gpt-5.6-sol',
messages: [
{
role: 'system',
content: 'You are an AI assistant who knows everything.',
},
{
role: 'user',
content: 'Tell me, why is the sky blue?'
}
],
});
const message = result.choices[0].message.content;
console.log(`Assistant: ${message}`);
};
main();
import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.ai.cc/v1",
api_key="",
)
response = client.chat.completions.create(
model="openai/gpt-5.6-sol",
messages=[
{
"role": "system",
"content": "You are an AI assistant who knows everything.",
},
{
"role": "user",
"content": "Tell me, why is the sky blue?"
},
],
)
message = response.choices[0].message.content
print(f"Assistant: {message}")

GPT-5.6 Sol · API
Developer Access Slip
Inputper 1M tokens
$6.50
Outputper 1M tokens
$39.00
RATE CARDUSD / 1M tok
Prompt caching: cache reads get a 90% discount, cache writes are billed at 1.25x input rate. Free credits on signup.
| Model | Input | Output | Context | Best For |
|---|---|---|---|---|
| GPT-5.6 SolThis page | $6.5/1M | $39/1M | 1M tok | Frontier reasoning + agents |
| GPT-5.5 | $6.5/1M | $39/1M | 1.05M tok | Reasoning + agents |
| Claude Opus 4.8 | $6.5/1M | $32.5/1M | 1M tok | Chat + assistants |
| Claude Fable 5 | $13/1M | $65/1M | 1M tok | Chat + assistants |
| Gemini 3.1 Pro | $2.6/1M | $15.6/1M | 1M tok | Coding + agents |
THANK YOU FOR CALLING THE API
www.ai.cc · GPT-5.6-SOL
AI Playground
Test all API models in the sandbox environment before you integrate. We provide more than 300 models to integrate into your app.
contact us