We just launched the SC Translator API (link) – a freemium REST API that allows you to translate between 20 languages.
You get 250 API requests (or up to 250,000 characters) per month per month for free and with the paid plan you get up to 10.000 API requests (or up to 25,000,000 characters) per month.
Using the API to translate text is as simple as sending the following POST request:
POST /translate HTTP/1.1
Endpoint: https://translator.sandarnecreations.com/api/translate
Accept: application/json
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY
{
"text": "Hello, how are you?",
"to": "es"
}
The API will automatically detect the language from which to translate and reply with the following response
HTTP/1.1 200 OK
Content-Type: application/json
{
"text": "Hola, ¿cómo estás?",
}
Languages currently supported: English, Spanish, French, German, Arabic, Danish, Greek, Persian, Finnish, Hindi, Italian, Japanese, Korean, Norwegian, Polish, Russian, Swedish, Thai, Ukrainian, Chinese.
We would love for people to try it out and give us some feedback!
More info here: https://translator.sandarnecreations.com