v1

latestOpenAPI 3.0.32026-07-248519153.1 KB
Translations

List supported translation languages

Return every language the platform recognises for AI / Crowdin translations. Each item exposes both the platform code (code, e.g. pt) and the Crowdin code (crowdin_code, e.g. pt-PT) — most APIs accept either form. The crowdin_supported array lists the subset visible in the cabinet translation modal.

get/project/translation-languages

Response

Catalog returned

successinteger
countinteger
crowdin_supportedstring[]

Example response

{
  "success": 1,
  "count": 40,
  "languages": [
    {
      "code": "pt",
      "label": "Portuguese (PT)",
      "crowdin_code": "pt-PT"
    }
  ],
  "crowdin_supported": [
    "es",
    "fr",
    "de",
    "pt",
    "it"
  ]
}