API Reference
API v1 (legacy)
Supported Languages

Supported Languages (v1)

Get a list of all supported languages with their codes using the v1 API.

Endpoint

GET /v1/supported-languages

Description

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

FieldTypeDescription
languagesarrayList of supported languages
languages[].codestringLanguage code (e.g., "en", "fr")
languages[].namestringLanguage 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.