Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/z1nc0r3/google-translate-api
The API from the official Google Translate Chrome extension.
https://github.com/z1nc0r3/google-translate-api
api google google-translate google-translate-api google-translate-free-api nodejs translate translate-api
Last synced: about 1 month ago
JSON representation
The API from the official Google Translate Chrome extension.
- Host: GitHub
- URL: https://github.com/z1nc0r3/google-translate-api
- Owner: z1nc0r3
- License: gpl-3.0
- Created: 2024-01-27T17:30:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-27T17:41:35.000Z (about 1 year ago)
- Last Synced: 2024-11-06T03:04:16.510Z (3 months ago)
- Topics: api, google, google-translate, google-translate-api, google-translate-free-api, nodejs, translate, translate-api
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# google-translate-api
## The API from the official Google Translate Chrome extension.
- Change the source language from the URL parameter - **sl**
- Change the translated language from the URL query parameter - **tl**- To run the script: ```node app.js```
_eg: Translation of the word "**mother**" from **EN** to **SI**_
_Result:_
```
{
sentences: [ { trans: 'මව', orig: 'mother', backend: 1 } ],
src: 'en',
confidence: 1,
spell: {},
ld_result: {
srclangs: [ 'en' ],
srclangs_confidences: [ 1 ],
extended_srclangs: [ 'en' ]
}
}
```