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

# GPT-5.4 Pro

> gpt-5.4-pro — OpenAI's highest-effort model. $0.030/request.

|              |                                                   |
| ------------ | ------------------------------------------------- |
| **Model ID** | `gpt-5.4-pro`                                     |
| **Provider** | OpenAI                                            |
| **Cost**     | \$0.030/req                                       |
| **Tier**     | Ultra                                             |
| **Best for** | Deepest reasoning, research, high-stakes accuracy |

## Example

```bash theme={null}
curl -X POST https://www.ninjachat.ai/api/v1/chat \
  -H "Authorization: Bearer nj_sk_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "gpt-5.4-pro", "messages": [{"role": "user", "content": "Hello!"}]}'
```

```python theme={null}
import requests, os

r = requests.post("https://www.ninjachat.ai/api/v1/chat",
    headers={"Authorization": f"Bearer {os.environ['NINJACHAT_API_KEY']}"},
    json={"model": "gpt-5.4-pro", "messages": [{"role": "user", "content": "Hello!"}]}
)
print(r.json()["choices"][0]["message"]["content"])
```

***

**Guides:** [Chat Completions](/chat) | [All Models](/models) | [Pricing](/pricing) | [Error Handling](/error-handling)
