DEV Community

Sandarne Creations
Sandarne Creations

Posted on

Need a Translation API? Here’s an easy to use Freemium Solution!

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"
}
Enter fullscreen mode Exit fullscreen mode

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?",
}
Enter fullscreen mode Exit fullscreen mode

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

AWS GenAI LIVE image

How is generative AI increasing efficiency?

Join AWS GenAI LIVE! to find out how gen AI is reshaping productivity, streamlining processes, and driving innovation.

Learn more

Top comments (0)

AWS GenAI LIVE image

Real challenges. Real solutions. Real talk.

From technical discussions to philosophical debates, AWS and AWS Partners examine the impact and evolution of gen AI.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay