import requests r = requests.post( "https://api.aimlapi.com/v1/chat/completions", headers={"Authorization": "Bearer " + AIMLAPI_KEY}, json={ "model": "openai/gpt-5.2-chat", "messages": [ { "role": "user", "content": "Hello!" } ] }, ) print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", { method: "POST", headers: { Authorization: `Bearer ${process.env.AIMLAPI_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ "model": "openai/gpt-5.2-chat", "messages": [ { "role": "user", "content": "Hello!" } ] }), }); console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \ -H "Authorization: Bearer $AIMLAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"openai/gpt-5.2-chat","messages":[{"role":"user","content":"Hello!"}]}'
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output | |
| Cached input |
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
GPT-5.2 Chat This page | Reasoning + agents | |||
| Reasoning + agents | ||||
| Balanced coding + agents | ||||
| Long-context, multimodal & agentic workflows | ||||
| Reasoning + agents |
GPT-5.2 Chat has a 128,000 tokens context window and can return up to 16,384 tokens.
GPT-5.2 Chat takes image, text as input and returns text.
Use openai/gpt-5.2-chat as the model id. Requests go to https://api.aimlapi.com/v1/chat/completions.
GPT-5.2 Chat is priced at input $2.40695 / 1M tokens, output $19.2556 / 1M tokens, cached input $0.240695 / 1M tokens.
Yes, GPT-5.2 Chat can stream responses as they are generated.
Yes, GPT-5.2 Chat accepts image input alongside text.
GPT-5.2 Chat was built by OpenAI.
Yes, it supports function calling, tool use, and parallel tool calls.