Is there any possibility to find out if the DeepL translator offers an API for the translation? Unfortunately I haven't found any information on this.
Would like to implement this to an Excel script for auto translation. I've already tried it with Google (like https://translate.google.com/#en/es/Hello%20World) but DeepL seems more accurate.
The REST API is finally (commercially) available, see the API reference documentation.
A sample request would be
where XXX is the authentication key you need to register with DeepL.
There is a POST call that allows you get the translations, I don't know how many time this will be supported or it's times limitations but here it is:
Url: https://www.deepl.com/jsonrpc
You should make a POST call with the next json:
The available languages are:
TO_LANGUAGE
must be a valid language andFROM_LANGUAGE
can be a valid language or autoI wrote a python module that wraps this API: pydeepl There are currently also a node package and a php client that accomplish the same goal.