> ## 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 model for multilingual reasoning, enterprise agents, and visual understanding.

Cohere model for multilingual reasoning, enterprise agents, and visual understanding.

## Model Information

| Field        | Description               |
| ------------ | ------------------------- |
| `model`      | command-a-plus-05-2026    |
| `context`    | 128K tokens               |
| `max output` | 64K 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

* Supports text and image understanding, tool use, and structured output.
* Use the complete dated ID command-a-plus-05-2026. Do not substitute the native Cohere v2 request envelope for the OpenAI-compatible messages format.

## 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-plus-05-2026",
  "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).
