Languages
Fetch the active language catalog available for agent configuration.
List Languages
http
GET /v1/languagesNo request body or query parameters.
Response 200
json
{
"languages": [
{
"id": "en-US",
"name": "English (United States)",
"is_active": true
},
{
"id": "hi-IN",
"name": "Hindi (India)",
"is_active": true
}
]
}Use this endpoint to populate language pickers before creating or updating agents. Only active languages are returned, ordered by display name.
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Locale identifier, such as en-US or hi-IN |
name | string | Display name |
is_active | boolean | Whether the language is currently available for agent configuration |

