> ## 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 Build 0.1

> xAI's Grok Build 0.1 coding model. See supported inputs, parameters, pricing, response fields, and API examples.

Grok Build 0.1 is xAI's agentic coding model, the model behind the Grok Build terminal agent, with a 256k context window and image input.

## Model

```
xai/grok-build-0.1
```

|              |                |
| ------------ | -------------- |
| **Provider** | xAI            |
| **Name**     | Grok Build 0.1 |

## 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-build-0.1",
    "messages": [
      {"role": "user", "content": "Generate a clean, minimalist personal website as a single HTML file."}
    ]
  }'
```

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