Multilingual Packs
GET
/v1/hub/multilingualList Multilingual Packs
List available multilingual tuning packs.
Runtime, CI or Admin tokenscope: readoperation_id: multilingual.listPacks
Authentication
Any bearer token belonging to the org can read this endpoint.
SDK install
pip install znyx-sdknpm install @znyx/sdkQuery parameters
| Name | Type | Required | Description |
|---|---|---|---|
| language#query | string | null | optional | Filter by language code (e.g., es, fr, de) |
Responses
| Status | Description |
|---|---|
| 200 | Successful Response |
| 422 | Validation Error |
Response schema
totalrequiredinteger
packsrequired
Errors & what triggers them
| Code | Trigger | Fix |
|---|---|---|
| 401 | Missing or expired Authorization header. | — |
| 403 | Token does not have org access (wrong org_id, or insufficient role). | — |
| 404 | Resource does not exist in this org. | — |
Request
curl -X GET 'https://api.znyx.ai/v1/hub/multilingual' \ -H 'Authorization: Bearer $ZNYX_TOKEN'
Response
application/json
Successful Response
{
"total": 0,
"packs": [
{
"name": "string",
"display_name": "string",
"language": "string",
"description": "string"
}
]
}Schema: object