cloud Alibaba | Hangzhou, China

Qwen for
Enterprise AI in Turkey

Alibaba's Qwen3.7 series pairs first-class multilingual performance — Turkish included — with one of the world's most vibrant open-model ecosystems. Onysoft AI Gateway gives you Qwen API access from Turkey through a single OpenAI-compatible endpoint: pay-as-you-go Qwen API pricing in Turkish lira, no foreign card or VPN required.

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

What Is Alibaba Qwen?

About the technology and the company behind the model

Alibaba Cloud is the cloud computing arm of Alibaba Group, founded in Hangzhou in 1999, and the largest cloud provider in Asia. The Qwen (Tongyi Qianwen) family it introduced in 2023 quickly grew into one of the world's most downloaded model ecosystems, combining powerful API models with open-weight variants released under the Apache 2.0 license. Specialized derivatives such as Coder, Math and VL let a huge community — from researchers to startups — build products on Qwen foundations.

Today the family is organized in three clear tiers. The flagship Qwen3.7-Max is the strongest model in the lineup for complex reasoning, agentic workflows and code generation; Qwen3.7-Plus hits the sweet spot of performance and cost for everyday production workloads; and Qwen3.6-Flash is the budget pick for high-volume, low-latency jobs. Strength across 100+ languages and dialects — Turkish included — combined with context windows in the hundreds of thousands of tokens makes Qwen a standout for multilingual and document-heavy projects.

For teams that need Qwen API access from Turkey, Onysoft AI Gateway is the most practical route. Built by Izmir-based Onysoft Veri Merkezi A.S., the platform serves Qwen alongside 708+ models behind a single OpenAI-compatible API. You top up a Turkish lira balance and pay as you go at current TL prices calculated with the live TCMB exchange rate; corporate e-invoices, KVKK-compliant infrastructure and 24/7 Turkish-language support come standard. No foreign credit card or VPN is needed, and your existing OpenAI SDK code works with just a base_url change.

With its open ecosystem and rapid release cadence, Alibaba intends to keep Qwen among the mainstream forces of global AI. Onysoft adds each new Qwen release to the catalog as it ships — ready to test instantly in the Playground.

business
Provider
Alibaba
calendar_month
Founded
1999
location_on
Headquarters
Hangzhou, China
category
Number of Models
3 models

Qwen Performance Metrics

Results from industry-standard benchmark tests

MMLU Multi-Domain Knowledge 85.3
HumanEval Code Generation 86.4
MATH Mathematics 80.0
GPQA Scientific Reasoning 49.0

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

Why Choose Qwen?

Multilingual Power, Open Ecosystem

language

Top-Tier Multilingual Performance

Strong results across 100+ languages and dialects, led by Chinese and English and including Turkish. The family's biggest edge for multilingual products and international operations.

psychology

Advanced Reasoning

The flagship Qwen3.7-Max works through multi-step problems methodically. It is the family's strongest mind for math, analysis and planning-heavy tasks.

code

Coding and Agentic Skills

Strong code generation, debugging and function calling support — a solid base for agentic workflows and developer tools. The open ecosystem's Coder derivatives share the same DNA.

bolt

Speed and Scale with Flash

Qwen3.6-Flash delivers low latency and low cost for classification, summarization and high-volume production pipelines. Scale to millions of requests economically.

payments

Pay-As-You-Go in Turkish Lira

Top up a TL balance and pay only for what you use, at current TL prices calculated with the live TCMB exchange rate. No subscriptions, no commitments, no foreign card required.

verified_user

KVKK-Compliant Enterprise Setup

KVKK compliance, corporate e-invoicing and 24/7 Turkish-language support, backed by Izmir-based Onysoft. Go to production in minutes — no VPN needed.

Qwen Models and Pricing

Qwen models available in TL through Onysoft AI Gateway

Recommended

Qwen3.7 Max

Flagship

The family flagship. The strongest Qwen for complex reasoning, agentic workflows and hard coding tasks.

qwen/qwen3.7-max play_circle Try
arrow_downward Input: ₺0,11 / 1K tokens
arrow_upward Output: ₺0,32 / 1K tokens

Qwen3.7 Plus

Popular

The performance-to-cost sweet spot for everyday production workloads. The workhorse for most enterprise scenarios.

qwen/qwen3.7-plus play_circle Try
arrow_downward Input: ₺0,02 / 1K tokens
arrow_upward Output: ₺0,09 / 1K tokens

Qwen3.6 Flash

Budget

The fast, economical option for high-volume, low-latency tasks. Ideal for classification and summarization.

qwen/qwen3.6-flash play_circle Try
arrow_downward Input: ₺0,01 / 1K tokens
arrow_upward Output: ₺0,08 / 1K tokens
view_list View All Models and Pricing

Qwen Use Cases

What businesses in Turkey can build with Qwen

language

International Business and Localization

Multilingual content production, document translation and market-specific localization. A real edge for foreign trade and logistics teams working with Asian markets.

code

Software Development

A cost-effective assistant for code generation, code review and refactoring. Analyze large codebases with Qwen3.7-Max and feed CI pipelines with Flash.

support_agent

Multilingual Customer Support

Build support bots in dozens of languages, Turkish included: answer high-volume requests economically with Qwen3.6-Flash and route complex cases to Qwen3.7-Max.

shopping_bag

E-Commerce

Product descriptions, customer review analysis and multilingual catalog generation. Coming from the Alibaba ecosystem, Qwen has a natural affinity for e-commerce data.

analytics

Data Extraction and Analysis

Information extraction, classification and labeling over unstructured text. JSON output and function calling support plug it straight into your data pipelines.

description

Document Processing

Thanks to the long context window, summarize, compare and query contracts, reports and technical documents in a single request.

Which Sectors Does Qwen Serve?

Sectors using Qwen through Onysoft AI Gateway

E-Commerce Logistics Foreign Trade Software Fintech Manufacturing Tourism Retail

How to Get Started with Qwen?

Start using Qwen 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 Qwen 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="qwen/qwen3.7-max",
    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: 'qwen/qwen3.7-max',
    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": "qwen/qwen3.7-max",
    "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' => 'qwen/qwen3.7-max',
        '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 Qwen with Onysoft?

The advantages of choosing Onysoft AI Gateway over the Alibaba 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 Qwen 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 Qwen

What people wonder about Qwen and Onysoft AI Gateway

How do I access the Qwen API from Turkey? expand_more

Sign up for Onysoft AI Gateway, top up a Turkish lira balance and you are live within minutes. No foreign credit card, overseas billing address or VPN is needed — every Qwen model is served through the single OpenAI-compatible endpoint at https://api.onysoft.com/v1.

How does Turkish lira pricing work? expand_more

You load a TL balance and each request is deducted per token at current TL prices calculated with the live TCMB exchange rate. There is no subscription or commitment — it is pure pay-as-you-go, and live Qwen API pricing is shown in the price table on this page.

How are KVKK compliance and data privacy handled? expand_more

Onysoft operates as a KVKK-compliant Turkish company, so your account and billing data are processed under Turkish law. Your API requests are forwarded only to generate responses and are never used by Onysoft for model training. For enterprise data processing agreements, our 24/7 Turkish support team can help.

How do I choose between Qwen3.7-Max, Qwen3.7-Plus and Qwen3.6-Flash? expand_more

Pick the flagship Qwen3.7-Max for complex reasoning, agentic workflows and hard coding tasks, and Qwen3.7-Plus for the best performance-to-cost balance on everyday production workloads. For high-volume, latency-sensitive jobs like classification and summarization, Qwen3.6-Flash is the budget choice.

Can I use Qwen with my existing OpenAI SDK code? expand_more

Yes. Set base_url to https://api.onysoft.com/v1, plug in your Onysoft API key and pass a model id such as qwen/qwen3.7-max. Python, Node.js and every other OpenAI-compatible client works with no further changes.

How large is the context window on Qwen models? expand_more

The current Qwen generation offers long context windows in the hundreds of thousands of tokens — enough to process hundreds of pages in a single request. The up-to-date context and output limits for each model are shown on the model cards on this page and in the Playground.

What makes Qwen3.7-Max stand out? expand_more

As the family flagship, Qwen3.7-Max is Qwen's strongest model for reasoning, code generation and agentic scenarios that rely on tool use. It is built for multi-step analysis, complex enterprise automation and demanding multilingual tasks.

Can I get a corporate invoice? expand_more

Yes — every balance top-up is issued as a corporate e-invoice in your company's name. Invoices are in Turkish lira and slot straight into your accounting workflow; contact our support team for account-based billing and bulk top-up arrangements.

Which languages is Qwen strongest in? expand_more

Qwen performs strongly across 100+ languages and dialects, led by Chinese and English and including Turkish. That breadth makes it a top pick for multilingual customer support, localization and teams doing business with Asian markets in particular.

Why does Qwen's open-source ecosystem matter? expand_more

Alibaba releases many Qwen variants as open weights under permissive licenses like Apache 2.0, and derivatives such as Coder, Math and VL grew out of that ecosystem. Broad community support, rich tooling integrations and transparent development give teams betting on Qwen long-term confidence.

cloud Alibaba Qwen

Power Up Your Project with Qwen

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

Want help finding the right model?