List of Available Locales
This endpoint returns the list of all locale codes supported by the platform. These locale codes can be used when defining localized content for applications.
Endpoint
| Method | URL |
|---|---|
| GET | https://ws.catappult.io/api/applications/availableLocales |
Authentication
To access this API, you need to have an active account subscription on Aptoide Connect and authenticate with an API key (check here how to generate one).
⚠️
Account type required
This endpoint can only be accessed by accounts of type Developer.
Response
Success
If the API call returns an HTTP 200 status code, the request was successful and it returns a JSON array containing all supported locale codes. Each locale follows the {languageCode}_{countryCode} format (e.g., en_US, pt_BR).
Example Response
[
"ar_AR",
"bg_BG",
"bn_IN",
"da_DK",
"de_DE",
"el_GR",
"en_GB",
"en_US",
"es_ES",
"es_MX",
"fa_IR",
"fr_FR",
"hi_HI",
"hu_HU",
"id_ID",
"it_IT",
"ja_JP",
"ko_KR",
"mr_IN",
"ms_MY",
"my_MM",
"nl_NL",
"pa_IN",
"pl_PL",
"pt_BR",
"pt_PT",
"ro_RO",
"ru_RU",
"sr_RS",
"th_TH",
"tl_PH",
"tr_TR",
"uk_UA",
"vi_VN",
"zh_CN"
]