2.22.7 • Published 5 months ago

reverso-api v2.22.7

Weekly downloads
47
License
MIT
Repository
github
Last release
5 months ago

Reverso API

version downloads telegram chat

logotype

Translate, get context examples or synonyms of words - this and much more you can do with your text queries via this API wrapper.

Navigation

Installing

$ npm i reverso-api

Usage

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.

Examples

getContext

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 }

getSpellCheck

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 }

getSynonyms

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 }

getTranslation

⚠️ 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 }

getConjugation

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 }

Credits

2.22.7

5 months ago

2.22.6

10 months ago

2.22.4

1 year ago

2.22.3

1 year ago

2.22.2

1 year ago

2.21.3

2 years ago

2.22.1

2 years ago

2.22.0

2 years ago

2.21.2

2 years ago

2.20.0

2 years ago

2.21.1

2 years ago

2.19.2

2 years ago

2.19.1

2 years ago

2.19.0

3 years ago

2.18.3

3 years ago

2.18.1

3 years ago

2.18.2

3 years ago

2.18.0

3 years ago

2.17.0

3 years ago

2.16.2

3 years ago

2.16.1

3 years ago

2.15.1

3 years ago

2.15.0

3 years ago

2.14.0

3 years ago

2.13.0

3 years ago

2.12.0

3 years ago

2.11.0

3 years ago

2.9.0

4 years ago

2.8.0

4 years ago

2.7.0

4 years ago

2.6.0

4 years ago

2.5.0

4 years ago

2.3.0

4 years ago

2.4.0

4 years ago

2.2.0

4 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.20.0

4 years ago

1.18.0

4 years ago

1.15.0

4 years ago

1.14.0

4 years ago

1.17.0

4 years ago

1.16.0

4 years ago

1.12.1

4 years ago

1.12.0

4 years ago

1.11.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago