VOOZH about

URL: https://apify.com/vivid_astronaut/translation/api/python

⇱ Translation API - Translate Text to 100+ Languages API in Python Β· Apify


Pricing

from $5.00 / 1,000 results

Go to Apify Store

Translate text between languages using AI. Support for 100+ languages with automatic detection. Perfect for content localization, multilingual apps, and international communication.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Fabio Suizu

Fabio Suizu

Maintained by Community

Actor stats

0

Bookmarked

6

Total users

0

Monthly active users

4 months ago

Last modified

Share

You might also like

Google Translate β€” Free Unlimited Text Translation

maged120/google-translate-scraper

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.

Google Translate Scraper Pro

hello.datawizards/google-translate-scraper-pro

Google Translate Scraper Pro lets you bulk-translate text using Google Translate. Simply provide source and target languages along with text input, and get clean JSON output with original and translated text. Ideal for localization, automation, or NLP workflows.

Multilingual Data Transformer

dz_omar/multilingual-data-transformer

Transform any JSON data into any language with AI-powered translation. Supports 16+ languages. Perfect for e-commerce, content localization, and data processing. Pay-per-word pricing. Features: ✨ Universal JSON support 🌍 16+ languages, French, German, Arabic, and more ⚑ Fast processing

πŸ‘ User avatar

FlowExtract API

6

5.0

Google Translator

web.harvester/google-translator

Translate any text to any of the supported languages using https://translate.google.com/

342

DeepL Translate Scraper - Low-costπŸ’²πŸ”₯πŸŒπŸ”€

delectable_incubator/deepl-translate-scraper-low-cost

Scrape DeepL translation results πŸŒπŸ”Ž with a powerful language data scraper. Extract original text, translated text, language pairs, timestamps, and translation metadata. Ideal for multilingual research, language learning, localization analysis, NLP projects, and structured translation datasets πŸ“ŠπŸš€

Multilingual Translation Agent

labrat011/multilingual-translation-agent

A Python translation utility agent that translates text between languages and returns translated text with per‑character billing metrics. Perfect for automation workflows, multi‑language pipelines, and agent‑to‑agent integrations.

MyMemory Translation Scraper

parseforge/mymemory-translation-scraper

Query MyMemory, the world's largest translation memory, with billions of human and machine translations. Translate text across 100+ languages with quality match scores, source attribution, and reference segments. Export to JSON, CSV, or Excel for localization and language research.

YouTube Transcript Scraper β€” 100+ Languages & Auto-Translation

celebrated-quadraphonic/youtube-transcript-scraper

Extract transcripts from YouTube videos. Batch URLs, channel mode, 100+ languages, auto-translation, SRT/WebVTT export. $2.00/1K β€” 60% cheaper than competitors.

πŸ‘ User avatar

XiaoZhi DataTools

2

Google Cloud Translation

seemuapps/google-cloud-translation

Translate a list of texts into any target language using the Google Cloud Translation API. Bulk-translate scraped content, product descriptions, reviews, or support tickets at scale.

You can access the Translation programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

πŸ‘ Python

Python

πŸ‘ JavaScript

JavaScript

CLI

πŸ‘ OpenAPI

OpenAPI

HTTP

MCP

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input ={}
9
10# Run the Actor and wait for it to finish
11run = client.actor("vivid_astronaut/translation").call(run_input=run_input)
12
13# Fetch and print Actor results from the run's dataset (if there are any)
14print("πŸ’Ύ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
15for item in client.dataset(run["defaultDatasetId"]).iterate_items():
16print(item)
17
18# πŸ“š Want to learn more πŸ“–? Go to β†’ https://docs.apify.com/api/client/python/docs/quick-start

Translation API - Translate Text to 100+ Languages API in Python

The Apify API client for Python is the official library that allows you to use Translation API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include:

Translation API in JavaScript

Translation API through CLI

Translation OpenAPI definition

Translation API