Google Translate β Free Unlimited Text Translation
Pricing
from $10.00 / 1,000 results
Google Translate β Free Unlimited Text Translation
Translate text between any of 100+ languages using Google Translate. Batch translate multiple texts in one run without an API key, Google Cloud account, or billing.
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
Actor stats
0
Bookmarked
154
Total users
8
Monthly active users
a month ago
Last modified
Categories
Share
Google Translate Apify Actor
This Apify Actor translates batches of text using Google Translate via the googletrans library. It supports a wide range of languages and can automatically detect the source language if not specified.
Features
- Batch Translate Text: Translate multiple texts from one language to another in a single request.
- Auto Language Detection: Automatically detect the source language if not specified.
- Efficient Bulk Processing: Groups translations by language pairs for optimal performance.
Supported Languages
This actor supports a wide range of languages. See the source code for the full list of supported language codes.
Input Schema
The input for this actor should be a JSON object with a single property:
batch_items: An array of translation items. Each item should be an object with:text: The text to be translated (required)source_lang: The source language code (optional, default: 'auto')target_lang: The target language code (required)
Example Input
{"batch_items":[{"text":"hello everyone","source_lang":"en","target_lang":"es"},{"text":"bonjour tout le monde","source_lang":"fr","target_lang":"en"}]}
Output Schema
Each output item will be a JSON object with the following properties:
item_index: The index of the item in the input batchoriginal_text: The original text provided for translationtranslated_text: The translated textsource_language: The detected or specified source language codetarget_language: The target language codesuccess: Whether the translation was successful
Example Output
{"item_index":0,"original_text":"hello everyone","translated_text":"hola a todos","source_language":"en","target_language":"es","success":true}
