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

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

Grok 4.7 is xAI's language model for coding, long-running agents, and knowledge work.

## Model

```
xai/grok-4.7
```

|              |          |
| ------------ | -------- |
| **Provider** | xAI      |
| **Name**     | Grok 4.7 |

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

<Note>
  **Volume discounts** are available for almost all models. Reach out at [contact@unifically.com](mailto:contact@unifically.com) to discuss custom pricing.
</Note>
