Google Translate get synonyms and examples

Is it possible to access synonyms and example words along with the translation itself when using the Google Translate API?

I checked the docs but I don't see anything like it.

+3


source to share


2 answers


No, you cannot get synonyms and examples along with the translated text. They currently only have 3 methods in the Translation API. Three methods: detections.list, languages.list and translations.list. So I think it would be great if you could make a feature request for this API in the PIT AppEngine.



+2


source


Pearson has released their free API, which includes examples, parts of speech, and synonyms. Check it out: http://developer.pearson.com/apis/dictionaries

http://api.pearson.com/v2/dictionaries/lase%20/entries?headword=hola



{
  "status": 200,
  "offset": 0,
  "limit": 10,
  "count": 1,
  "total": 1,
  "url": "/v2/dictionaries/lase /entries?headword=hola",
  "results": [
    {
      "datasets": [
        "lase",
        "dictionary"
      ],
      "headword": "hola",
      "id": "ct59rx0q97",
      "part_of_speech": "interjection",
      "senses": [

      

0


source







All Articles