> ## 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.

# Grok 4.5

> xAI's Grok 4.5 language model. See supported inputs, parameters, pricing, response fields, and API examples.

Grok 4.5 is xAI's general-purpose language model for reasoning, coding, and long-context tasks.

## Model

```
xai/grok-4.5
```

|              |          |
| ------------ | -------- |
| **Provider** | xAI      |
| **Name**     | Grok 4.5 |

## 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": "xai/grok-4.5",
    "messages": [
      {"role": "user", "content": "Analyze the tradeoffs in this architecture."}
    ]
  }'
```
