LLM Reference
DeepInfra

Mistral Small on DeepInfra

Mistral Small · MistralAI

ServerlessOpen Source

Last refreshed 2026-06-15. Next refresh: weekly.

Why use Mistral Small on DeepInfra?

DeepInfra offers Mistral Small with competitive pricing. DeepInfra is a cloud inference platform offering cost-effective access to open-source AI models.

Compare Mistral Small across 5 providers to find the best fit for your use case
Input / 1M
-
Output / 1M
-
Cache
Not sourced
Batch
Not sourced

Setup recipe

Python + curl
Install
pip install openai
Auth
export DEEPINFRA_API_KEY=...
Call
import os
from openai import OpenAI
client = OpenAI(
    api_key=os.environ["DEEPINFRA_API_KEY"],
Model ID
mistral-small-1

Request example

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["DEEPINFRA_API_KEY"],
    base_url="https://api.deepinfra.com/v1/openai"
)
response = client.chat.completions.create(
    model="mistral-small-1",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)

Gotchas

  • DeepInfra uses "organization/model-name" format, e.g. "meta-llama/Meta-Llama-3-8B-Instruct" or "mistralai/Mistral-7B-Instruct-v0.3". See the DeepInfra model catalog for exact IDs.
  • The examples expect DEEPINFRA_API_KEY; rename it only if your application config maps the new variable.

Compare Mistral Small Across Providers

ProviderInput (per 1M)Output (per 1M)
Microsoft Foundry$1.00$3.00
AWS Bedrock$1.00$3.00
Mistral AI Studio$0.10$0.30
Fireworks AI——
DeepInfra——

Capabilities

Structured Outputs

About Mistral Small

Mistral Small is a language model from MistralAI. It offers a 32K-token context window.

Get Started