Translation

DeepL

standard

DeepL is an reliable translation provider offering Text Translation, Document Translation through Aweb's unified API. It features none streaming support with premium-tier latency.

Try DeepLOfficial docs

Specifications

CategoryTranslation
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tierstandard
Reliabilitypremium
Qualitypremium
Base URLhttps://api.deepl.com/v2
SDK Package

Capabilities (2)

Text Translationtranslation.text
Score: 98DEFAULT
Document Translationtranslation.document
Score: 95DEFAULT

Quick start

Use DeepL through Alfred's unified API — no provider-specific SDK needed.

cURL

curl -X POST https://api.alfred-ai.app/v1/execute \
  -H "Authorization: Bearer $ALFRED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "deepl",
    "capability": "translation.text",
    "input": { "prompt": "Hello from DeepL!" }
  }'

TypeScript

import { Alfred } from '@alfred/core';

const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });

const result = await alfred.execute({
  provider: 'deepl',
  capability: 'translation.text',
  input: { prompt: 'Hello from DeepL!' },
});

console.log(result.output);

Related Translation providers

Google Cloud Translation

standard tier

Getting started →API reference →All capabilities →All providers →