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

# Command A

> Cohere multilingual model for enterprise chat, retrieval-augmented generation, and tool workflows.

Cohere multilingual model for enterprise chat, retrieval-augmented generation, and tool workflows.

## Model Information

| Field        | Description               |
| ------------ | ------------------------- |
| `model`      | command-a-03-2025         |
| `context`    | 256K tokens               |
| `max output` | 8K tokens                 |
| `endpoint`   | POST /v1/chat/completions |

Context and output sizes describe the model specification. Effective request limits, availability, and billing depend on the MixRoute route.

## Capabilities and Usage

* Uses command-a-03-2025, a distinct model from Command A+.
* Use text messages for this integration. Native Cohere documents/citations features are not automatically enabled by switching the model ID on Chat Completions.

## Request Example

Set `MIXROUTE_API_KEY` before making the request.

```bash theme={null}
curl --request POST "https://api.mixroute.ai/v1/chat/completions" \
  --header "Authorization: Bearer $MIXROUTE_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "model": "command-a-03-2025",
  "messages": [
    {
      "role": "user",
      "content": "Explain the tradeoffs of database indexes."
    }
  ],
  "max_tokens": 1024
}'
```

## Request Fields

| Field        | Description                                           |
| ------------ | ----------------------------------------------------- |
| `model`      | Required. Use the exact model ID above.               |
| `messages`   | Required conversation messages with role and content. |
| `max_tokens` | Optional output-token budget.                         |

Complete request format: [chat-openai](/en/api-reference/endpoint/chat-openai).
