Supported Languages (v1)
Get a list of all supported languages with their codes using the v1 API.
Endpoint
GET /v1/supported-languagesDescription
Get a list of all supported languages with their codes using the v1 API. TranslatePlus supports 100+ languages for translation.
Headers
X-API-KEY string (required)
: Your API key for authentication
Example Request
curl https://api.translateplus.io/v1/supported-languages \
-H "X-API-KEY: your_api_key"Success Response (200 OK)
{
"languages": [
{
"code": "en",
"name": "English"
},
{
"code": "fr",
"name": "French"
},
{
"code": "es",
"name": "Spanish"
}
]
}Response Fields
| Field | Type | Description |
|---|---|---|
languages | array | List of supported languages |
languages[].code | string | Language code (e.g., "en", "fr") |
languages[].name | string | Language name (e.g., "English", "French") |
Error Responses
See Error Handling for common error responses.
Migration to v2
We recommend migrating to the v2 Supported Languages endpoint which provides enhanced features and better error handling.