Skip to content

List locales

Returns the catalog of supported locale codes and names (with optional regions). Use this when creating or updating a project’s base language and translation languages. No authentication is required.

GET /api/v1/locales

AuthNot required
Path parametersNone
Query parametersNone
BodyNone
Terminal window
curl -sS https://collingo.app/api/v1/locales

Content-Type: application/json — array of locales:

[
{
"code": "en",
"name": "English",
"regions": [
{ "code": "US", "name": "United States" },
{ "code": "GB", "name": "United Kingdom" }
]
},
{
"code": "de",
"name": "German",
"regions": [
{ "code": "DE", "name": "Germany" }
]
}
]

regions may be null when a language has no regional variants in the catalog.

OpenAPI documents only the successful 200 response for this public endpoint.