VoxLink.ai

API Reference

Get available languages

Retrieve all available languages for assistant configuration

Updated 25 Jan 2026
On this page

This endpoint returns a list of all available languages that can be used when creating or updating assistants.

Response fields

dataarray

idinteger

  The unique identifier of the language

namestring

  The display name of the language

iso_2string

  The ISO 639-1 two-letter language code
[
  {
    "id": 1,
    "name": "English",
    "iso_2": "en"
  },
  {
    "id": 2,
    "name": "Romanian",
    "iso_2": "ro"
  },
  {
    "id": 3,
    "name": "French",
    "iso_2": "fr"
  },
  {
    "id": 4,
    "name": "Spanish",
    "iso_2": "es"
  },
  {
    "id": 5,
    "name": "German",
    "iso_2": "de"
  }
]

Notes

  • Use the id field as language_id when creating or updating assistants
  • Use the id field in secondary_language_ids array for multi-language assistants
  • The iso_2 code can be useful for language-specific functionality
  • All available languages are returned in a single request

Related guides