List supported source and target languages

Return supported languages as lowercase BCP-47 codes and display names. Use the bcp47 values when creating a project.

Headers
  • X-API-Version
    enum
    const:  
    1

    Optional. The /v1 URL prefix already selects the version; send this only for an extra check. Unsupported values return 400.

    values
    • 1
Responses
  • application/json
  • application/json
Request Example for get/v1/languages
curl https://api-arbitr.straker.ai/v1/languages \
  --header 'X-API-Key: YOUR_SECRET_TOKEN'
{
  "languages": [
    {
      "bcp47": "string",
      "name": "string"
    }
  ],
  "page": {
    "number": 1,
    "has_more": true,
    "limit": 1
  }
}