Google Translate
Translate text using Google Cloud Translation
Translate and detect languages using the Google Cloud Translation API. Supports auto-detection of the source language.
Translate text between languages using the Google Cloud Translation API. Supports auto-detection of the source language.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Google Cloud API key with Cloud Translation API enabled |
text | string | Yes | The text to translate |
target | string | Yes | Target language code (e.g., "es", "fr", "de", "ja") |
source | string | No | Source language code. If omitted, the API will auto-detect the source language. |
format | string | No | Format of the text: "text" for plain text, "html" for HTML content |
| Parameter | Type | Description |
|---|
translatedText | string | The translated text |
detectedSourceLanguage | string | The detected source language code (if source was not specified) |
Detect the language of text using the Google Cloud Translation API.
| Parameter | Type | Required | Description |
|---|
apiKey | string | Yes | Google Cloud API key with Cloud Translation API enabled |
text | string | Yes | The text to detect the language of |
| Parameter | Type | Description |
|---|
language | string | The detected language code (e.g., "en", "es", "fr") |
confidence | number | Confidence score of the detection |