Node.JS back-end application to manage translation of listenbourgeois language. Only available with french.
Free public API is available with no requests limit.
http://51.210.104.99:1841/
-
POST /translate
Translate text into an other languageArguments in body :
-
from : String --> Original language
-
to : String --> Target language
-
text : String --> Text to translate
Responses :
- Success :
{ "status": 200, "response": "bòendae", "alt_response": "bòendae", "detail_reponse": "[{\"word\":\"bòendae\",\"score\":1}]" }
- Error :
{ "status": 404, "response": "[error]" }
-
-
GET /translate
Translate text into an other languageArguments in params :
-
from : String --> Original language
-
to : String --> Target language
-
text : String --> Text to translate
Responses :
- Success :
{ "status": 200, "response": "bòendae", "alt_response": "bòendae", "detail_reponse": "[{\"word\":\"bòendae\",\"score\":1}]" }
- Error :
{ "status": 404, "response": "[error]" }
-