Neural Machine Translation (NMT) is based on a sequence-to-sequence model architecture, where an encoder encodes source language text into context vectors, and a decoder generates target language text. This architecture requires large amounts of parallel corpora (corresponding texts in source and target languages) for training, learning the mapping relationship between two languages by adjusting model weights.
The translation capability of Large Language Models (LLM) is not specifically designed, but rather a natural extension of their general language understanding abilities. When the model scale is large enough, it can automatically align multilingual semantic spaces, learning grammar rules, contextual understanding, and world knowledge. Therefore, in translation tasks, LLM translation quality often surpasses NMT, but it is also more prone to hallucinations.
The table below compares the characteristics of traditional Neural Machine Translation (NMT) engines and emerging Large Language Models (LLM) in translation scenarios.
Google Translate, DeepL, Microsoft
OpenAI, Claude, DeepSeek, Gemini
NMT services are typically provided through REST API, using a billing model based on input character count. Some providers also offer page-based pricing schemes (for proprietary formats like doc, pdf, which are not discussed in detail here). After binding a credit card, major platforms usually provide free translation quotas ranging from 500,000 to 2 million characters per month, with charges applied for usage beyond the quota.
LLM services are also provided through REST API, but use a bidirectional billing model for input and output (Why? Because you can use simple instructions to have large language models translate large amounts of text, for example: "Please translate all 7 volumes of Harry Potter into Chinese"). Additionally, if directly connecting to large language models rather than using the platform's REST API, billing is typically based on token count rather than character count.
Given the different billing methods of these two services, in the price calculator in the next section, we approximate token-based billing to character-based billing to uniformly evaluate and compare the marginal costs of both translation methods.
Based on your estimated translation volume, use the calculator below to quickly estimate monthly translation costs.
| Provider | Price / 1M Chars | Free Tier (Monthly) | Est. Cost |
|---|---|---|---|
Google Cloud Translation | $20.00 | 500k chars | $0.00 |
Microsoft Azure Translator | $10.00 | 2M chars | $0.00 |
Amazon Translate | $15.00 | 2M chars (12 mo) | $0.00 |
DeepL API Pro | $25.00 | None | $1.49 |
Baidu General Translate | $7.00 | 1M chars (Verified) | $0.00 |
| Model | Price / 1M Chars | Description | Est. Cost |
|---|---|---|---|
Claude Sonnet 4.5 | $4.500 | Literary & Nuanced | $0.2690 |
Gemini 3 Pro | $3.500 | Long Context Expert | $0.2092 |
GPT-5 | $2.813 | Advanced Agentic | $0.1681 |
GPT-5 mini | $0.563 | Fast & Affordable | $0.0336 |
Qwen-Plus | $0.400 | Balanced Performance | $0.0239 |
Prices are estimated based on official documentation as of late November 2025. Does not include volume discounts or subscription base fees.