Skip to main content
GPT 5.4 Mini is a compact, cost-efficient model from OpenAI suitable for everyday text generation tasks.

Model

openai/gpt-5.4-mini
ProviderOpenAI
NameGPT 5.4 Mini

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-mini",
    "messages": [
      {"role": "user", "content": "Summarize the benefits of unit testing."}
    ]
  }'