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

# Llama 3.3 70B Instruct

> Meta instruction-tuned text model for multilingual dialogue and text generation.

Meta instruction-tuned text model for multilingual dialogue and text generation.

## Model Information

| Field      | Description               |
| ---------- | ------------------------- |
| `model`    | llama-3.3-70b-instruct    |
| `context`  | 128K 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

* Text input and text output; this is not an image-generation or native vision model.
* Use the exact lowercase MixRoute model ID rather than the provider repository name.

## 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": "llama-3.3-70b-instruct",
  "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).
