Skip to main content
GPT 5.4 is OpenAI’s flagship general-purpose language model for complex reasoning, coding, and analysis tasks.

Model

openai/gpt-5.4
ProviderOpenAI
NameGPT 5.4

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.4",
    "messages": [
      {"role": "user", "content": "Design a REST API for a todo application."}
    ]
  }'