AI-ready version:
Supported Languages
Description
This API retrieves a list of all the languages supported by the platform in ISO format.
Endpoint
GET https://impact.dots.eco/api/v1/supported-languages
This endpoint does not require any parameters or authentication.
Headers
| Header Name | Value | Description |
|---|---|---|
Content-Type |
application/json |
Required for all requests. |
Example Request
Minimal Request
curl --location --request GET 'https://impact.dots.eco/api/v1/supported-languages' \
--header 'Content-Type: application/json'
Responses
Example Successful Response
If the request is successful, the API returns a list of supported language codes.
Response Body
{
"object": "list",
"data": [
"en",
"he",
"fr",
"es",
"sl",
"el",
"nl",
"fi",
"de",
"ja",
"ru",
"it",
"zh-hans",
"pt-pt",
"ro",
"pt-br",
"pl",
"bg",
"hu",
"da",
"sv",
"es-mx",
"cs",
"ko",
"fil",
"vi",
"th"
]
}
Response Fields
| Field | Type | Description |
|---|---|---|
object |
string |
Specifies the type of the returned object (e.g., "list"). |
data |
array |
An array of supported language codes in ISO format. |
HTTP Status Code
| Code | Description |
|---|---|
| 200 | Request completed successfully. |
Notes
- This endpoint does not require authentication, query parameters, or any additional headers beyond
Content-Type. - The
datafield includes language codes that follow ISO standards.