Last refreshed 2026-04-15. Next refresh: weekly.
Why use Mixtral 8x22B Instruct v0.3 on Replicate API?
Replicate API offers Mixtral 8x22B Instruct v0.3 with pay-as-you-go pricing at $2.00/1M input tokens. Replicate is a cloud-based platform that enables users to run machine learning models easily and efficiently.
Setup recipe
Python + curlpip install replicateexport REPLICATE_API_TOKEN=...import replicate
output = replicate.run(
"mixtral-8x22b-instruct-v0.3",
input={"prompt": "Hello"}mixtral-8x22b-instruct-v0.3Request example
import replicate
# reads REPLICATE_API_TOKEN from env
# mixtral-8x22b-instruct-v0.3 format: "owner/model-name" (latest version) or "owner/model-name:version-hash"
output = replicate.run(
"mixtral-8x22b-instruct-v0.3",
input={"prompt": "Hello"}
)
# Output is a list or generator depending on the model
print("".join(output))Gotchas
- Replicate uses "owner/model-name" format (e.g. "meta/meta-llama-3-8b-instruct") for the latest version, or "owner/model-name:version-sha" to pin to a specific version. The REST endpoint splits owner and model-name into the path: /v1/models/{owner}/{model-name}/predictions.
- The examples expect REPLICATE_API_TOKEN; rename it only if your application config maps the new variable.
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $2.00 |
| Output tokens | $2.00 |
Capabilities
About Mixtral 8x22B Instruct v0.3
Updated instruction-tuned Mixtral 8x22B MoE model from Mistral AI. Version 0.3 with improved instruction following and function calling capabilities.
FAQ
What does Mixtral 8x22B Instruct v0.3 cost on Replicate API?
On Replicate API, Mixtral 8x22B Instruct v0.3 costs $2 per 1M input tokens and $2 per 1M output tokens.
What is the context window for Mixtral 8x22B Instruct v0.3 on Replicate API?
Mixtral 8x22B Instruct v0.3 supports a 64,000 token context window on Replicate API.
Who created Mixtral 8x22B Instruct v0.3?
Mixtral 8x22B Instruct v0.3 was created by MistralAI as part of the Mixtral model family.
Is Mixtral 8x22B Instruct v0.3 open source?
Mixtral 8x22B Instruct v0.3 is open source according to the seed data.