/install google-cloud-translate-pro
Google Cloud Translate Pro
Translate text across 195 languages powered by Google Cloud Translation — the same engine behind Google Translate.
Quick Start
Get a free API key (500K credits, never expire):
curl -X POST https://api.socketsio.com/auth/signup \
-H "Content-Type: application/json" \
-d '{"email":"[email protected]","password":"yourpassword"}'
Set your key:
export SOCKETSIO_API_KEY=tr-your-key-here
Capabilities
Translate
Translate text to any of 195 languages. Auto-detects source language.
curl -X POST https://api.socketsio.com/v1/translate \
-H "X-API-Key: $SOCKETSIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "Hello, how are you?", "target": "zh"}'
Response:
{
"data": {
"translations": [{
"translatedText": "你好,你好吗?",
"detectedSourceLanguage": "en"
}]
}
}
Detect Language
Identify the language of any text with confidence score.
curl -X POST https://api.socketsio.com/v1/detect \
-H "X-API-Key: $SOCKETSIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "Bonjour le monde"}'
Bulk Translate
Translate up to 128 texts in a single call.
curl -X POST https://api.socketsio.com/v1/translate \
-H "X-API-Key: $SOCKETSIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"q": ["Hello", "Goodbye", "Thank you"], "target": "es"}'
List Languages
Get all 195 supported languages with display names.
curl https://api.socketsio.com/v1/languages \
-H "X-API-Key: $SOCKETSIO_API_KEY"
Agent Integration
For agent workflows, use the translate script directly:
python3 scripts/translate.py "Hello world" --target zh
python3 scripts/translate.py "Bonjour" --detect
python3 scripts/translate.py "Hello" "Goodbye" "Thanks" --target ja --bulk
The script reads SOCKETSIO_API_KEY from environment. See scripts/translate.py --help for all options.
Google Translate v2 Compatible
The API is a drop-in replacement for Google Cloud Translation v2. If you have existing code using Google Translate, change only the base URL:
# Before (Google, $20/M chars):
# url = "https://translation.googleapis.com/language/translate/v2"
# After (SocketsIO, $0.50/M chars):
url = "https://api.socketsio.com/v1/translate"
Same request format, same response format, 97% cheaper.
Supported Languages
195 languages including: Afrikaans, Arabic, Bengali, Chinese (Simplified & Traditional), Czech, Danish, Dutch, English, Finnish, French, German, Greek, Gujarati, Hebrew, Hindi, Hungarian, Indonesian, Italian, Japanese, Kannada, Korean, Latvian, Lithuanian, Malay, Malayalam, Marathi, Norwegian, Persian, Polish, Portuguese, Punjabi, Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Swahili, Swedish, Tamil, Telugu, Thai, Turkish, Ukrainian, Urdu, Vietnamese, Welsh, and 147 more.
Full list: run scripts/translate.py --languages or call the /v1/languages endpoint.
Pricing
| Tier | Price | Credits |
|---|---|---|
| Free Trial | $0 | 500K (never expire) |
| Starter | $5 | 2M |
| Growth | $20 | 10M |
| Scale | $100 | 50M |
For comparison: Google Translate API charges $20 per 1M characters. This skill uses the same Google engine at up to 97% less.
Links
- API Docs: https://socketsio.com/docs
- Dashboard: https://socketsio.com/dashboard
- Pricing: https://socketsio.com/pricing
- Support: [email protected]
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install google-cloud-translate-pro - 安装完成后,直接呼叫该 Skill 的名称或使用
/google-cloud-translate-pro触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Google Cloud Translate Pro 是什么?
Translate text across 195 languages using Google Cloud Translation API with zero-config setup. Use when: (1) translating text between any language pair, (2)... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 101 次。
如何安装 Google Cloud Translate Pro?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install google-cloud-translate-pro」即可一键安装,无需额外配置。
Google Cloud Translate Pro 是免费的吗?
是的,Google Cloud Translate Pro 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Google Cloud Translate Pro 支持哪些平台?
Google Cloud Translate Pro 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Google Cloud Translate Pro?
由 q2408808(@q2408808)开发并维护,当前版本 v1.0.0。