import * as deepl from 'deepl-node';
const authKey = "{YOUR_API_KEY}";
const translator = new deepl.Translator(authKey);
(async () => {
const result = await translator.translateText('Hello, world!', null, 'de');
console.log(result.text);
})();
Sample Response
Hallo, Welt!
Note: If you are on a free API account, you can replace https://api.deepl.com with https://api-free.deepl.com.
Step 3: Keep building with our client libraries and how-to guides.
You can use our API with popular programming languages (Python, JavaScript, .NET, PHP, Java, Ruby). Click here to learn more about our client libraries.
You can also click here to find more examples and guides.
Start Developing
Cookbook - Explore a large variety of examples from both internal and external contributors for using the DeepL API for different applications.
Your First API Request - Learn more about how to make your first API request with DeepL.