Skip to main content
GPT 5.5 is OpenAI’s latest general-purpose language model with improved reasoning and instruction following.

Model

openai/gpt-5.5
ProviderOpenAI
NameGPT 5.5

Supported Endpoints

All three API formats are supported:

Example

curl -X POST https://api.unifically.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "openai/gpt-5.5",
    "messages": [
      {"role": "user", "content": "Explain the CAP theorem with a real-world example."}
    ]
  }'