wind_power Mistral AI | Paris, France

Mistral for
Enterprise AI in Turkey

Access Mistral AI's models from Turkey — Mistral Large 2512, Medium 3.5, Devstral and Ministral — through one OpenAI-compatible API. Turkish lira billing at the live exchange rate, KVKK-friendly data handling and corporate e-invoicing, with no VPN or foreign card required.

rocket_launch Get Started compare Try in Playground description API Documentation
4
Models
2023
Founded
8
Sectors
TL
Pricing

What Is Mistral AI Mistral?

About the technology and the company behind the model

Mistral AI was founded in Paris in 2023 by former DeepMind and Meta researchers Arthur Mensch, Guillaume Lample and Timothee Lacroix. Within months it became Europe's most valuable AI startup, and its efficiency-first architectures and open-weight model tradition pushed the whole industry toward "more intelligence with less compute". With data sovereignty at its core, Mistral is widely seen as Europe's strongest technological answer to the US and Chinese AI giants.

The current lineup centers on four models. The flagship Mistral Large 2512 is the family's most capable option for complex reasoning, long-document analysis and multi-step tasks. Mistral Medium 3.5 is the enterprise workhorse that balances cost and performance for production workloads; Devstral 2512 is a coding specialist trained for agentic work on real codebases; and Ministral 14B is the compact choice for high-volume, low-latency scenarios. Across the family you get 128K-class context windows, function calling, JSON mode and strong multilingual support including Turkish.

For enterprises, Mistral's GDPR-native approach pairs naturally with Turkey's KVKK requirements. Through Onysoft AI Gateway you can access the Mistral API from Turkey with no foreign credit card or VPN: top up a Turkish lira balance, pay as you go at the live TCMB exchange rate, and receive corporate e-invoices from Izmir-based Onysoft Veri Merkezi A.S. Your existing OpenAI SDK code works with a single base_url change, backed by a Playground and 24/7 support in Turkish.

Mistral is one of the few players growing open models and enterprise-grade frontier models under the same roof. As Europe's independent AI ecosystem matures, Mistral's strategic weight will keep rising for teams that put efficiency and data sovereignty first.

business
Provider
Mistral AI
calendar_month
Founded
2023
location_on
Headquarters
Paris, France
category
Number of Models
4 models

Mistral Performance Metrics

Results from industry-standard benchmark tests

MMLU Multi-Domain Knowledge 84.0
HumanEval Code Generation 88.4
MATH Mathematics 72.3
GPQA Scientific Reasoning 50.5

* Benchmark results are based on data published by the respective providers and may be updated.

Why Choose Mistral?

Europe's Pioneering AI Model Family

verified_user

GDPR + KVKK: A Natural Fit

Mistral is built around European data protection standards, and that approach pairs naturally with Turkey's KVKK requirements. The ideal choice for organizations that value data sovereignty.

psychology

Flagship-Grade Reasoning

Mistral Large 2512 is the family's strongest model for complex reasoning, multi-step tasks and long-document analysis. Built for work that demands enterprise-grade accuracy.

code

Agentic Coding with Devstral

Devstral 2512 is trained to navigate real codebases across files, fix bugs and complete multi-step development tasks. A perfect fit for code assistants and autonomous development agents.

bolt

Low Latency, High Volume

Ministral 14B delivers fast responses and low cost in a compact package. Ideal for classification, summarization and high-volume production traffic.

description

128K Context + Structured Output

Process long contracts and reports in one pass with 128K-class context windows. JSON mode and function calling deliver reliable results in integration projects.

language

Multilingual Strength, Turkish Included

Best-in-class across European languages, with strong Turkish comprehension and generation as well. A natural choice for multilingual products and localization work.

Mistral Models and Pricing

Mistral models available in TL through Onysoft AI Gateway

Recommended

Mistral Large 2512

Flagship

The family flagship. The most capable Mistral for complex reasoning, long-document analysis and multi-step enterprise tasks.

mistralai/mistral-large-2512 play_circle Try
arrow_downward Input: ₺0,04 / 1K tokens
arrow_upward Output: ₺0,11 / 1K tokens

Mistral Medium 3.5

Popular

The enterprise workhorse for price-performance. Ideal for production workloads, RAG and assistant applications.

mistralai/mistral-medium-3-5 play_circle Try
arrow_downward Input: ₺0,11 / 1K tokens
arrow_upward Output: ₺0,54 / 1K tokens

Devstral 2512

Coding Expert

The agentic coding specialist. Trained for bug fixing, test writing and multi-step development tasks on real codebases.

mistralai/devstral-2512 play_circle Try

Ministral 14B

Budget

Compact and fast. The budget-friendly pick for classification, summarization and high-volume, low-latency tasks.

mistralai/ministral-14b-2512 play_circle Try
arrow_downward Input: ₺0,01 / 1K tokens
arrow_upward Output: ₺0,01 / 1K tokens
view_list View All Models and Pricing

Mistral Use Cases

What businesses in Turkey can build with Mistral

gavel

Legal & Compliance

Contract analysis, regulation summarization and KVKK/GDPR-aligned document workflows. Reduce compliance risk with a Europe-based model.

code

Software Development

Code generation, code review, test writing and agentic development flows with Devstral; architectural decisions and complex refactoring with Large 2512.

support_agent

Customer Support Automation

Build Turkish-language support bots with Medium 3.5 and Ministral: fast, economical and resilient at high volume.

analytics

Reports & Data Analysis

Financial reports, market analyses and structured data extraction from long documents. Pipe results straight into your systems with JSON mode.

search

RAG & Enterprise Knowledge Base

Question answering and retrieval-augmented generation (RAG) over company documents. Handle broad source sets in a single request with 128K context.

article

Content & Localization

Multilingual content creation, translation and marketing copy. Strike a natural tone across European languages and Turkish.

Which Sectors Does Mistral Serve?

Sectors using Mistral through Onysoft AI Gateway

Finance Legal Public Sector Software Healthcare E-Commerce Education Insurance

How to Get Started with Mistral?

Start using Mistral models in your project in 3 steps

1

Create an Account

Sign up to Onysoft AI Gateway for free. Sign in instantly with your email address or your GitHub/Google account. Your API key is generated automatically.

2

Add Balance

Add as much balance as you like in Turkish Lira. You can pay by bank transfer/EFT, credit card or corporate invoice. Transparent TL pricing with the current TCMB exchange rate.

3

Start Using the API

Thanks to our OpenAI-compatible API endpoint, access Mistral models without changing your existing code. Just change the base_url and api_key.

from openai import OpenAI

client = OpenAI(
    api_key="sk-ony-...",
    base_url="https://api.onysoft.com/v1"
)

response = client.chat.completions.create(
    model="mistralai/mistral-large-2512",
    messages=[{"role": "user", "content": "Merhaba!"}]
)
print(response.choices[0].message.content)
import OpenAI from 'openai';

const client = new OpenAI({
    apiKey: 'sk-ony-...',
    baseURL: 'https://api.onysoft.com/v1'
});

const response = await client.chat.completions.create({
    model: 'mistralai/mistral-large-2512',
    messages: [{role: 'user', content: 'Merhaba!'}]
});
console.log(response.choices[0].message.content);
curl https://api.onysoft.com/v1/chat/completions \
  -H "Authorization: Bearer sk-ony-..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "mistralai/mistral-large-2512",
    "messages": [{"role": "user", "content": "Merhaba!"}]
  }'
$ch = curl_init('https://api.onysoft.com/v1/chat/completions');
curl_setopt_array($ch, [
    CURLOPT_HTTPHEADER => [
        'Authorization: Bearer sk-ony-...',
        'Content-Type: application/json'
    ],
    CURLOPT_POSTFIELDS => json_encode([
        'model' => 'mistralai/mistral-large-2512',
        'messages' => [['role' => 'user', 'content' => 'Merhaba!']]
    ]),
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_POST => true
]);
$response = json_decode(curl_exec($ch));
echo $response->choices[0]->message->content;

Why Use Mistral with Onysoft?

The advantages of choosing Onysoft AI Gateway over the Mistral AI API directly

currency_lira

Pay in Turkish Lira

No foreign credit card needed. Transparent pricing in TL with the current TCMB exchange rate. Bank transfer, credit card or corporate invoice.

receipt_long

Invoicing in Turkey

As a company based in Turkey, we issue e-invoices and e-archive invoices. Your accounting processes run smoothly.

hub

One API, All Models

Access 370+ models including Mistral just by changing the base_url. OpenAI SDK compatible.

support

24/7 Support in Turkish

Our Turkish-speaking technical support team is always with you. Integration help and issue resolution.

shield

KVKK Compliant

Data processing policies aligned with Turkish regulations. Enterprise data security standards.

trending_down

Cost Optimization

Switch easily between different models as your needs change. Optimize your budget.

Frequently Asked Questions About Mistral

What people wonder about Mistral and Onysoft AI Gateway

How can I access the Mistral API from Turkey? expand_more

Sign up for Onysoft AI Gateway, top up a Turkish lira balance and start in minutes. No foreign credit card, overseas billing address or VPN is needed; every Mistral model is served from https://api.onysoft.com/v1 with a single API key.

How does Mistral API pricing work in Turkish lira? expand_more

Billing is pay-as-you-go: you only pay for the tokens you consume, with no subscription or commitment. Dollar-based model prices are converted to Turkish lira at the live TCMB exchange rate, and current TL prices are shown in the pricing table on this page.

Is my data safe? How is KVKK compliance handled? expand_more

Mistral is built with European data protection standards, GDPR first among them, and that approach naturally aligns with Turkey's KVKK requirements. The Onysoft platform itself operates in compliance with KVKK; for enterprise data processing agreements, our 24/7 support team is available in Turkish.

Which Mistral model should I choose? expand_more

Pick Mistral Large 2512 for the hardest reasoning and long-document work, and Mistral Medium 3.5 for the best price-performance in production workloads. Devstral 2512 leads for coding and agentic development tasks, while Ministral 14B shines when speed and volume matter most.

Does my existing OpenAI SDK code work with Mistral? expand_more

Yes. Set base_url to https://api.onysoft.com/v1 and change the model name to, for example, mistralai/mistral-large-2512. The official Python, Node.js and other OpenAI SDKs work with no further changes.

What is the context window of the Mistral models? expand_more

The family offers 128K-class token context windows, which means you can process a contract hundreds of pages long or a large codebase in a single request. Up-to-date per-model limits are shown in the Playground and on each model's detail page.

What does Mistral Large 2512 offer? expand_more

As the family's newest flagship, Large 2512 is markedly stronger than previous generations at complex reasoning, multi-step tasks, function calling and multilingual generation. It is the family's first choice for enterprise analysis, legal document processing and agent architectures.

What is Devstral and how does it differ from classic code models? expand_more

Devstral 2512 goes beyond single-file code completion: it is a specialist trained for agentic coding — navigating across files in real codebases, locating bugs and solving multi-step tasks. It is designed for code assistants and autonomous development agents.

Can I get a corporate invoice? expand_more

Yes. Izmir-based Onysoft Veri Merkezi A.S. issues a corporate e-invoice for every balance top-up. That makes it straightforward to fold your Mistral API spending into your accounting and procurement processes.

Does Mistral support Turkish? expand_more

Yes, Mistral models deliver strong comprehension and generation across many languages, including Turkish. You can confidently use them for Turkish customer support bots, content generation and translation pipelines.

wind_power Mistral AI Mistral

Power Up Your Project with Mistral

Create a free account, get your API key and start using Mistral in TL right away. Custom pricing is available for enterprise projects.

Want help finding the right model?