LLM Reference
Fireworks AI

Mistral Small on Fireworks AI

Mistral Small · MistralAI

ServerlessOpen Source

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

Why use Mistral Small on Fireworks AI?

Fireworks AI offers Mistral Small with competitive pricing. Fireworks AI offers a generative AI platform as a service, focusing on rapid product iteration and cost-efficient AI deployment.

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 FIREWORKS_API_KEY=...
Call
import os
from openai import OpenAI
client = OpenAI(
    api_key=os.environ["FIREWORKS_API_KEY"],
Model ID
mistral-small-1

Request example

import os
from openai import OpenAI

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

Gotchas

  • Fireworks model IDs use "accounts/fireworks/models/{model-name}" format, e.g. "accounts/fireworks/models/llama4-scout-instruct-basic" or "accounts/fireworks/models/deepseek-r1".
  • The examples expect FIREWORKS_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