openai
openai/gpt-5-2-chat-latest/Released Dec 2025

GPT 5.2 Chat

GPT-5.2 model optimized for ChatGPT with 128K context, text and image input support, streaming, and structured outputs.

Provider
openai
Modality
multi-to-text
Released
Dec 2025
Pricing
$1.75 / 1M in$14.00 / 1M out

Ready to build with GPT 5.2 Chat?

Sign in to grab your API key and start making requests.
bash
curl -sSf -X POST https://hub.oxen.ai/api/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $OXEN_API_KEY" \
    -d '{
  "model": "gpt-5-2-chat-latest",
  "messages": [
    {
      "role": "user",
      "content": "Try sending a message."
    }
  ]
}'