cURL
curl --request GET \ --url https://api.voxnexus.ai/v1/voices \ --header 'Authorization: Bearer <token>'
{ "voices": [ { "voice_id": "vl-xiaoxiao", "name": "Xiaoxiao", "language": "zh-CN", "locale": "zh-CN", "display_name": "晓晓", "gender": "female", "age": "young", "description": "A cheerful and energetic voice", "styles": [ "cheerful", "sad", "angry" ], "sample_url": "https://api.example.com/v1/samples/vl-xiaoxiao", "voice_config_schema": {} } ], "pagination": { "page": 1, "page_size": 20, "total": 150, "total_pages": 8 } }
获取可用的语音列表,支持按语言、性别、年龄段、风格等条件过滤
使用 Bearer Token 进行认证,Token 为 API Key
语言代码(可选)
"zh-CN"
性别(可选)
male
female
neutral
年龄段(可选)
child
young
adult
senior
语音风格(可选)
页码(默认 1)
x >= 1
每页数量(默认 20,最大 100)
1 <= x <= 100
成功返回语音列表
语音列表
Show child attributes