🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
agent.data.voice에 사용할 수 있는 음성 모델 목록을 조회합니다. 조직 private voice도 포함하며, 다음 페이지는 next_cursor를 cursor로 다시 전달해 조회합니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/models/voices \
--header 'Authorization: Bearer <token>'{
"items": [
{
"provider": "<string>",
"id": "<string>",
"name": "<string>",
"language": "<string>",
"gender": "male",
"sample_url": "<string>",
"description": "<string>",
"model": "<string>",
"capabilities": {}
}
],
"total_count": 123,
"next_cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt
Use this file to discover all available pages before exploring further.
조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.
음성 provider 필터입니다. 허용값에는 google, elevenlabs, cartesia, openai 등이 있습니다.
음성 언어 필터입니다. ko-KR, *처럼 이 endpoint가 반환한 값을 사용합니다.
이전 응답의 next_cursor 값입니다. 다음 페이지를 조회할 때 그대로 전달합니다.
반환할 최대 항목 수입니다. v3 목록 endpoint는 1~100을 허용합니다.
1 <= x <= 100Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/models/voices \
--header 'Authorization: Bearer <token>'{
"items": [
{
"provider": "<string>",
"id": "<string>",
"name": "<string>",
"language": "<string>",
"gender": "male",
"sample_url": "<string>",
"description": "<string>",
"model": "<string>",
"capabilities": {}
}
],
"total_count": 123,
"next_cursor": "<string>"
}