Mistral Small 4 API AI Agent

Build autonomous AI agents with Mistral Small 4. Supports function calling, tool use, and multi-step reasoning โ€” perfect for agentic workflows that need to make decisions and take actions.

Mistral Small 4 Pricing

Token TypeQubaxRetailSave
Input (per 1M)$0.061$0.047โ€”
Output (per 1M)$0.244$0.188-30%

An AI agent workload (50K input + 5K output tokens, 100 tasks/day) costs approximately $12.79/month on Qubax.

Why use Mistral Small 4 for AI agents on Qubax?

  • ๐Ÿค–Autonomous agents that call APIs and external tools
  • ๐Ÿค–Multi-step reasoning for complex task completion
  • ๐Ÿค–Agent orchestration with LangChain, CrewAI, or custom frameworks
  • ๐Ÿค–Function calling for structured, reliable agent responses

About Mistral Small 4

Mistral Small 4 โ€” 119B MoE model unifying instruction following, reasoning, coding, and vision with 256K context. It supports a 256K-token context window and up to 33K output tokens per request. Native capabilities include reasoning, vision, tool calling, structured output, streaming. On Qubax it is served by 159 independent sellers, so pricing stays competitive and uptime stays high.

256K context window33K max output tokensBuilt-in reasoningVision / image inputFunction & tool callingJSON schema responsesInput modalities: text, imageToken streaming

Mistral Small 4 AI Agent โ€” code example

Python โ€” tool-calling agent looppython
from openai import OpenAI
import json

client = OpenAI(
    base_url="https://api.qubax.ai/v1",
    api_key="qbx_live_YOUR_KEY",
)

tools = [{
    "type": "function",
    "function": {
        "name": "get_weather",
        "parameters": {"type": "object", "properties": {"city": {"type": "string"}}},
    },
}]

resp = client.chat.completions.create(
    model="mistral-small-4",
    messages=[{"role": "user", "content": "What's the weather in Tokyo?"}],
    tools=tools,
)
call = resp.choices[0].message.tool_calls[0]
print(json.loads(call.function.arguments))  # -> {"city": "Tokyo"}

More Mistral AI models on Qubax

Get started in 60 seconds

  1. 1Create a free account at qubax.ai/register
  2. 2Add crypto credits (200+ coins, $3 minimum, credits never expire)
  3. 3Generate an API key and set your base URL to https://api.qubax.ai/v1
  4. 4Use model ID mistral-small-4 โ€” done!

Mistral Small 4 AI Agent FAQ

How much does Mistral Small 4 cost for AI agents?

On Qubax, Mistral Small 4 costs $0.061 per 1M input tokens and $0.244 per 1M output tokens. Pay with 200+ cryptocurrencies.

Can I use Mistral Small 4 with my existing tools?

Yes. Qubax is fully OpenAI-compatible. Change your base URL to api.qubax.ai/v1 and use your Qubax key. Works with Cline, Cursor, OpenCode, LangChain, and any OpenAI SDK.

Do I need a credit card?

No. Qubax accepts 200+ cryptocurrencies. No credit card, no KYC.

Start using Mistral Small 4 for AI agents

No credit card. Crypto accepted. Credits never expire.

Get started โ†’
Mistral Small 4 API for AI Agent ยท Qubax AI