Logo
Platform updates
Assistants

Get available languages

Retrieve all available languages for assistant configuration

GET

/ user / assistants / languages

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

Response fields

data array

id integer

The unique identifier of the language


name string

The display name of the language


iso_2 string

The ISO 639-1 two-letter language code



Notes

  • This endpoint does not require any parameters
  • Use the name field when creating or updating assistants
  • The iso_2 code can be useful for language-specific functionality
  • All available languages are returned in a single request
Get available languages
200 Response
[
  {
    "id": 1,
    "name": "English",
    "iso_2": "en"
  },
  {
    "id": 2,
    "name": "Spanish",
    "iso_2": "es"
  },
  {
    "id": 3,
    "name": "French",
    "iso_2": "fr"
  },
  {
    "id": 4,
    "name": "German",
    "iso_2": "de"
  },
  {
    "id": 5,
    "name": "Italian",
    "iso_2": "it"
  }
]