aimpress-chatbot/node_modules/google-translate-token
“SamoilenkoVadym” 205d62e282 Your commit message
2025-04-27 19:29:04 +01:00
..
.npmignore Your commit message 2025-04-27 19:29:04 +01:00
.travis.yml Your commit message 2025-04-27 19:29:04 +01:00
index.js Your commit message 2025-04-27 19:29:04 +01:00
LICENSE Your commit message 2025-04-27 19:29:04 +01:00
package.json Your commit message 2025-04-27 19:29:04 +01:00
README.md Your commit message 2025-04-27 19:29:04 +01:00
test.js Your commit message 2025-04-27 19:29:04 +01:00

google-translate-token Build Status XO code style

A package that generates the necessary token to use the Google Translate API for free 💵🚫

Why

translate.google.com uses a token to authorize the requests. If you are not Google, you do not have this token and will have to pay $20 per 1 million characters of text.

This package is the result of reverse engineering on the obfuscated and minified code used by Google to generate such token.

How it works

The token is based on a seed which is updated once per hour and on the text that will be translated. Both are combined by some strange math in order to generate a final token (e.g. 820594.703830) which is used by the API to validade the request.

Install

npm install --save google-translate-token

Usage

const token = require('google-translate-token');

token.get('Hello').then(console.log);
//=> { name: 'tk', value: '159402.284291' }