> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unifically.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GPT 5.4 Mini

> OpenAI's GPT 5.4 Mini language model

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

## Model

```
openai/gpt-5.4-mini
```

|              |              |
| ------------ | ------------ |
| **Provider** | OpenAI       |
| **Name**     | GPT 5.4 Mini |

## Supported Endpoints

All three API formats are supported:

* [Chat Completions](/api-reference/v1-chat-completions) — `POST /v1/chat/completions`
* [Responses](/api-reference/v1-responses) — `POST /v1/responses`
* [Messages](/api-reference/v1-messages) — `POST /v1/messages`

## Example

```bash theme={null}
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."}
    ]
  }'
```
