DeepL for Developers

The Language AI platform for developers. Translate text, documents, or speech through simple APIs.

Start free, no credit card required.

translate.sh
Showing the cURL example
# 도착 언어를 선택한 다음, ‘실행’을 클릭하여 번역을 진행하세요.
curl -X POST https://api.deepl.com/v2/translate \
  --header "Content-Type: application/json" \
  --header "Authorization: DeepL-Auth-Key $YOUR_API_KEY" \
  --data '{ "text": ["Hello, world!"], "target_lang": "" }'
$ sh translate.sh

Our APIs

Translate API

Translate text and HTML with world-leading accuracy.

  • 100+ supported languages
  • Glossary & formality control
  • HTML/XML support

Voice API

Transcribe and translate speech in real time with both speech-to-text and speech-to-speech.

  • 30+ supported languages
  • Low-latency streaming
  • Specialized vocabulary support

Document API

Translate documents like PDF, DOCX, PPTX, and more, while preserving original formatting and design.

  • 15+ supported formats
  • Support for images, tables, and rich text
  • Up to 100 MB per document

5분 만에 바로 시작하세요.

API 번역 - 첫 번째 API 호출

Python 예시 보기

1. API 키 가져오기

무료로 회원가입하고(신용카드 불필요) 콘솔에서 API 키를 복사하세요.

2. SDK 설치

pip install deepl

3. Python로 첫 번째 API를 호출해 보세요.

이 코드를 복사하고 API 키를 복사한 다음 실행하세요.

import deepl

deepl_client = deepl.DeepLClient("YOUR_API_KEY")
result = deepl_client.translate_text("Hello, world!", target_lang="DE")
print(result.text)  # "Hallo, Welt!"

4. 그럼 다음은 뭔가요?

Start building with DeepL

Free API key. No credit card required.

Translate, transcribe and write in 30+ languages.