Translate, get context examples or synonyms of words - this and much more you can do with your text queries via this API wrapper.
$ npm i reverso-api
const Reverso = require('reverso-api')
const reverso = new Reverso()
Congrats! You can use all the available methods now.
Let's read through the README and find out how the things work.
You can pass either callback function...
reverso.getContext(...params, (err, response) => {
...
})
or use .then()
function.
reverso.getContext(...params).then((response) => {
...
})
All the examples below are given using callback function.
reverso.getContext(
'meet me half way',
'english',
'russian',
(err, response) => {
if (err) throw new Error(err.message)
console.log(response)
}
)
Response:
{
ok: Boolean,
text: String,
source: String,
target: String,
translations: [String, ...],
examples: [
{
id: Number,
source: String,
target: String
},
...
]
}
Error:
{ ok: Boolean, message: String }
reverso.getSpellCheck('helo', 'english', (err, response) => {
if (err) throw new Error(err.message)
console.log(response)
})
Response:
{
ok: Boolean,
text: String,
sentences: [ { startIndex: Number, endIndex: Number, status: String } ... ],
stats: {
textLength: Number,
wordCount: Number,
sentenceCount: Number,
longestSentence: Number,
},
corrections: [
{
id: Number,
text: String,
type: String,
explanation: String,
corrected: String,
suggestions: [
{
text: String,
definition: String,
category: String,
},
...
],
},
]
}
Error:
{ ok: Boolean, message: String }
reverso.getSynonyms('dzieล dobry', 'polish', (err, response) => {
if (err) throw new Error(err.message)
console.log(response)
})
Response:
{
ok: true,
text: String,
source: String,
synonyms: [
{ id: Number, synonym: String },
...
]
}
Error:
{ ok: Boolean, message: String }
โ ๏ธ WARNING: eventually, your server's IP address might get banned by Reverso moderators and you won't receive any data.
reverso.getTranslation(
'how is going?',
'english',
'chinese',
(err, response) => {
if (err) throw new Error(err.message)
console.log(response)
}
)
Response:
{
text: String,
source: String,
target: String,
translations: [String, ...],
context: {
examples: [
{
source: String,
target: String,
source_phrases: [
{
phrase: String,
offset: Number,
length: Number
},
...
],
target_phrases: [
{
phrase: String,
offset: Number,
length: Number
},
...
]
},
...
],
rude: Boolean
}, // or null
detected_language: String,
voice: String // or null
}
Error:
{ ok: Boolean, message: String }
reverso.getConjugation('ะธะดัะธ', 'russian', (err, response) => {
if (err) throw new Error(err.message)
console.log(response)
})
Response:
{
ok: Boolean,
infinitive: String,
verbForms: [
{
id: Number,
conjugation: String,
verbs: [String, ...],
},
...
]
}
Error:
{ ok: Boolean, message: String }
- All data is provided by reverso.net.
- Author on Telegram @vychs.
- Want to talk about the API? Join our Telegram chat.