Skip to main content
DeepL offers regional API endpoints that process and store data within specific geographic regions. Regional endpoints provide the same API functionality as the standard endpoint, with data processing occurring in data centers located in specific regions. These endpoints help organizations meet data residency and compliance requirements, and can also reduce latency for users in specific geographic regions.
Regional endpoints are only available to customers who have signed a regional deployment addendum. Without a signed addendum, requests to regional endpoints return a 403 error. Contact your account manager or reach out to our sales team to discuss access.

Endpoint URLs

DeepL currently offers the following regional endpoints:
RegionEndpoint URL
United Stateshttps://api-us.deepl.com
Japanhttps://api-jp.deepl.com
European Union (default)https://api.deepl.com

Configuration

Regional endpoints are configured by specifying the endpoint URL in the API client. The standard endpoint URL (https://api.deepl.com) is replaced with the regional endpoint URL (https://api-us.deepl.com or https://api-jp.deepl.com).
# Standard endpoint
curl -X POST 'https://api.deepl.com/v2/translate' \
--header 'Authorization: DeepL-Auth-Key [yourAuthKey]' \
--header 'Content-Type: application/json' \
--data '{
  "text": ["Hello, world!"],
  "target_lang": "DE"
}'

# US regional endpoint
curl -X POST 'https://api-us.deepl.com/v2/translate' \
--header 'Authorization: DeepL-Auth-Key [yourAuthKey]' \
--header 'Content-Type: application/json' \
--data '{
  "text": ["Hello, world!"],
  "target_lang": "DE"
}'

Technical specifications

Access requirements

Regional endpoints require activation through a regional deployment addendum. Requests to regional endpoints without activation return a 403 error (Your account is denied access). Contact your account manager or reach out to our sales team to activate regional endpoints for your account. While API keys are not region-specific, each DeepL account is restricted to a single region. Your keys work only with the regional endpoint your account is assigned to.

API compatibility

Regional endpoints support all DeepL API functionality except:
  • Voice API
  • Admin Analytics API
These endpoints are only available on the standard api.deepl.com endpoint.

Glossaries and style rules

Glossaries and style rules are unique to each of DeepL’s regional data centers and are not shared between them. Glossaries and style rules created via the API on one regional endpoint (e.g., api-us.deepl.com) are only accessible from that same endpoint. Additionally, the DeepL web UI (at deepl.com) currently only accesses the European Union data center. Glossaries and style rules created in the UI are only accessible via the standard api.deepl.com endpoint, not regional endpoints like api-us.deepl.com or api-jp.deepl.com. For more details, see the Style rules documentation.