VOOZH about

URL: https://apify.com/web.harvester/google-translator/api

⇱ Google Translator API Β· Apify


Pricing

$6.00/month + usage

Go to Apify Store

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

Pricing

$6.00/month + usage

Rating

0.0

(0)

Developer

πŸ‘ Web Harvester

Web Harvester

Maintained by Community

Actor stats

5

Bookmarked

344

Total users

1

Monthly active users

2 years ago

Last modified

Categories

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.

Google Dataset Items Translator

web.harvester/google-dataset-items-translator

Translate any dataset field(s) to any of the supported languages using the Google Translate website, it goes through all the items in the dataset and translates all of the selected fields

20

Reverso Translator

web.harvester/reverso-translator

Translate any text to any of the supported languages using reverso.net

30

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.

Bing Microsoft Translator

canadesk/bing-microsoft-translator

Translate text with Bing Translator. It's fast and costs little.

πŸ‘ User avatar

Canadesk Support

90

Google Live Translate

olican/google-live-translate

Apify Actor & MCP Server for real-time translation, transcription, and language detection using Google Gemini 3.5 Live Translate with emotional voice preservation.

You can access the Google Translator 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

# Set API token
$API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
$cat> input.json <<'EOF'
<{
< "text": "I want to translate this text",
< "sourceLanguage": "auto",
< "targetLanguage": "es"
<}
<EOF
# Run the Actor using an HTTP API
# See the full API reference at https://docs.apify.com/api/v2
$curl"https://api.apify.com/v2/acts/web.harvester~google-translator/runs?token=$API_TOKEN"\
<-X POST \
<-d @input.json \
<-H'Content-Type: application/json'

Google Translator API

Below, you can find a list of relevant HTTP API endpoints for calling the Google Translator Actor. For this, you’ll need an Apify account. Replace <YOUR_API_TOKEN> in the URLs with your Apify API token, which you can find under Integrations in Apify Console. For details, see the API reference.

Run Actor

POST
https://api.apify.com/v2/acts/web.harvester~google-translator/runs?token=<YOUR_API_TOKEN>

Note: By adding the method=POST query parameter, this API endpoint can be called using a GET request and thus used in third-party webhooks. Please refer to our Run Actor API documentation.

Run Actor synchronously and get dataset items

POST
https://api.apify.com/v2/acts/web.harvester~google-translator/run-sync-get-dataset-items?token=<YOUR_API_TOKEN>

Note: This endpoint supports both POST and GET request methods. However, only the POST method allows you to pass input data. For more information, please refer to our Run Actor synchronously and get dataset items API documentation.

Get Actor

GET
https://api.apify.com/v2/acts/web.harvester~google-translator?token=<YOUR_API_TOKEN>

For more information, please refer to our Get Actor API documentation.

Actors can be used to scrape web pages, extract data, or automate browser tasks. Use the Google Translator API programmatically via the Apify API.

You can choose from:

Google Translator API in Python

Google Translator API in JavaScript

Google Translator API through CLI

Google Translator OpenAPI definition

You can start Google Translator with the Apify API by sending an HTTP POST request to the Run Actorendpoint. An Actor’s input and its content type can be passed as a payload of the POST request, and additional options can be specified using URL query parameters. The Google Translator is identified within the API by its ID, which is the creator’s username and the name of the Actor.

When the Google Translator run finishes you can list the data from its default dataset(storage) via the API or you can preview the data directly on Apify Console.