
gpt-5-6-solGPT-5.6 Sol 是 OpenAI GPT-5.6 家族的旗舰、最强推理模型,大致对应早期 GPT-5 家族无后缀的顶配档;gpt-5.6 别名即路由到 Sol。支持推理 token、文本+图像输入与文本输出,1,050,000 token 上下文、128,000 最大输出 token,知识截止 2026 年 2 月 16 日。已在 APIMODELS 上线,输入 $1.103 / 输出 $6.618 每百万 token(缓存输入 $0.110),约为 OpenAI 官方 $5/$30 的两成,可通过 /v1/chat/completions 与 /v1/responses 两个端点调用,另有 -low/-medium/-high/-xhigh/-max/-ultra 六档推理规格同价:一个 API Key 覆盖全部模型,价格低于官方,国内可直连、无需组织认证,失败不扣费。
The highest-intelligence GPT-5.6 model — the gpt-5.6 alias routes here
Seven levels: gpt-5.6-sol plus -low / -medium / -high / -xhigh / -max / -ultra, all one price
Text + image input, text output; 1.05M-token context, 128K max output
OpenAI-compatible /v1/chat/completions and /v1/responses; $1.103 / $6.618 per 1M
View complete API reference with all parameters and examples.
Enable real-time streaming responses with Server-Sent Events.
{
"model": "gpt-5-6-sol",
"stream": true,
"messages": [...]
}Enable the model to use tools and call functions.
{
"model": "gpt-5-6-sol",
"tools": [{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get current weather for a location",
"parameters": {
"type": "object",
"properties": {
"location": {"type": "string", "description": "City name"}
},
"required": ["location"]
}
}
}],
"messages": [{"role": "user", "content": "What's the weather in Tokyo?"}]
}Get structured JSON responses from the model.
{
"model": "gpt-5-6-sol",
"response_format": {"type": "json_object"},
"messages": [{"role": "user", "content": "Extract info as JSON: John is 30 years old"}]
}| Parameter | Type | Required | Description |
|---|---|---|---|
| model | string | Yes | Model identifier (e.g., gpt-5-6-sol) |
| messages | array | Yes | Array of message objects with role and content |
| max_tokens | integer | No | Maximum tokens in the response |
| stream | boolean | No | Enable streaming responses (SSE) |
| temperature | number | No | Sampling temperature (0.0 - 2.0) |
| top_p | number | No | Nucleus sampling threshold (0.0 - 1.0) |
| tools | array | No | Function calling tools definition |
| response_format | object | No | Output format (e.g., json_object) |
View complete API reference with streaming, thinking, and more.
Billing: Cost = (input_tokens * input_price + output_tokens * output_price) / 1,000,000
GPT-5.6 Sol 是由 OpenAI 提供的大语言模型 API。GPT-5.6 Sol 是 OpenAI GPT-5.6 家族的旗舰、最强推理模型,大致对应早期 GPT-5 家族无后缀的顶配档;gpt-5.6 别名即路由到 Sol。支持推理 token、文本+图像输入与文本输出,1,050,000 token 上下文、128,000 最大输出 token,知识截止 2026 年 2 月 16 日。已在 APIMODELS 上线,输入 $1.103 / 输出 $6.618 每百万 token(缓存输入 $0.110),约为 OpenAI 官方 $5/$30 的两成,可通过 /v1/chat/completions 与 /v1/responses 两个端点调用,另有 -low/-medium/-high/-xhigh/-max/-ultra 六档推理规格同价:一个 API Key 覆盖全部模型,价格低于官方,国内可直连、无需组织认证,失败不扣费。 通过 APIMODELS 平台,您可以使用统一的 API 接口调用该模型,按量计费、价格透明。当前定价:Input: $1.103, Output: $6.618 per 1M tokens。
构建智能对话系统,自动回答用户问题,提升客户服务效率。
自动撰写文章、邮件、广告文案等文本内容,提高内容产出效率。
辅助代码编写、调试和代码审查,加速软件开发流程。
理解和分析非结构化数据,提取关键信息并生成报告摘要。
GPT-5.6 Sol 通过 APIMODELS 平台调用,当前定价:Input: $1.103, Output: $6.618 per 1M tokens。按量计费,用多少付多少。
在 APIMODELS 注册账号并获取 API Key,然后通过我们的统一 API 端点调用即可。我们提供详细的 API 文档和 cURL、Python、Node.js 代码示例。
APIMODELS 通过聚合平台提供与官方相同的 GPT-5.6 Sol 模型。我们提供统一的 API 接口,无需分别注册各平台账号,一个 API Key 即可调用所有模型。
GPT-5.6 Sol 是 OpenAI GPT-5.6 家族的旗舰、最强推理模型,大致对应早期 GPT-5 家族无后缀的顶配档;gpt-5.6 别名即路由到 Sol。支持推理 token、文本+图像输入与文本输出,1,050,000 token 上下文、128,000 最大输出,知识截止 2026 年 2 月。
在 apimodels.app 上,GPT-5.6 Sol 输入 $1.103 / 输出 $6.618 每百万 token,缓存命中的输入 token 按 $0.110 计费——约为 OpenAI 官方 $5 / $30 的两成。按量计费、失败不扣费,注册即送 $0.10 试用额度。单次请求输入超过 272,000 token 时,该请求整体按输入 $2.206 / 输出 $9.926 计费(输入 2 倍、输出 1.5 倍),这与上游的长上下文加价规则一致。推理 token 计入输出 token。
把 base_url 指向 https://api.apimodels.app/v1,用你的 API Key,模型名填 gpt-5.6-sol(也可直接用 gpt-5.6 别名,会自动路由到 Sol)。OpenAI 兼容的 /v1/chat/completions 和 /v1/responses 两个端点都支持,openai-python、openai-node、Cherry Studio、Cursor 等现成工具直接可用。想调推理深度就换模型名后缀:-low、-medium、-high、-xhigh、-max、-ultra,六档与基础档同价,深度越高只是产生更多推理 token(按输出计费)。
上游会给每次请求注入约 1,450 token 的系统前缀,所以即使只发一句话,usage 里的 input_tokens 也不会低于这个数。parallel_tool_calls: false 会被上游忽略,模型仍可能一次返回多个 tool_call。输入超过 272,000 token 后整单按输入 2 倍、输出 1.5 倍计费。文本+图像输入、函数调用(tools)、流式、/v1/responses 均已实测可用。
Sol 是旗舰(最强智能,apimodels.app 上 $1.103/$6.618),Terra 平衡智能与成本(mini 档,官方 $2.5/$15),Luna 面向成本敏感、高并发(nano 档,官方 $1/$6)。三者同一 OpenAI 兼容接口,改一个模型名即可切换;三者目前都已在 APIMODELS 上线(Luna 请用 gpt-5.6-luna-max)。
在 APIMODELS,GPT-5.6 Sol 与 60+ 个模型共用一个 API Key、一个余额,所以选型只看合不合适,不存在锁定。它支持 Frontier / Flagship、Reasoning Tokens、Text + Image In、1.05M Context,你可以在价格和能力上把它和其它大语言模型模型对比,换模型只需改一个模型名字符串——无需新账号、无需重新对接。所有大语言模型模型与实时价格见 apimodels.app/models。
GPT-5.6 Sol 支持:Frontier / Flagship、Reasoning Tokens、Text + Image In、1.05M Context。完整参数与调用方式见 APIMODELS 的 API 文档。
可以。APIMODELS 提供可直接访问的统一 API,一个 API Key 即可调用 GPT-5.6 Sol,无需分别注册官方账号、也无需自行处理官方接口的网络访问。
我们支持 Stripe(Visa、Mastercard 等国际信用卡)和支付宝付款。充值后积分即时到账。