Supported languages
Discover supported locale codes before starting text, dubbing, or subtitle workflows.
Use GET /v2/languages/{language_type} before submitting a workflow.
language_type | Use for |
|---|---|
text | Text translation and subtitle target languages |
dubbing | Media dubbing and voice translation |
all | Every public language capability |
export LINGOPAL_API_KEY="your-api-key"
curl https://api.lingopal.ai/v2/languages/text \
-H "X-API-Key: $LINGOPAL_API_KEY"Authorization
APIKeyHeader X-API-Key<token>
In: header
Path Parameters
language_type*Language Type
Language capability filter: dubbing for media translation, text for text/document/subtitle workflows, or all for every supported language.
Value in
- "dubbing"
- "text"
- "all"
Response Body
application/json
application/json
curl -X GET "https://example.com/v2/languages/dubbing"{ "count": 1, "languages": [ { "dubbing_support": true, "language": "Spanish", "language_id": 1, "locale": "es", "text_support": true, "voice_cloning_support": true } ], "request_type": "text"}Refer to the API Reference entry for listLanguages for complete language filters and response payloads.
Use the locale codes returned by the endpoint in workflow requests. A language can support text, dubbing, or both; do not assume every locale is available for every workflow.