curl --request GET \
--url https://supertoneapi.com/v1/custom-voices/search \
--header 'x-sup-api-key: <api-key>'{
"items": [
{
"voice_id": "voice_123456789",
"name": "My Custom Voice",
"description": "A warm and friendly voice for customer service"
}
],
"total": 25,
"next_page_token": "10"
}지정된 기준에 따라 고객이 등록한 보이스를 검색하고 조회합니다.
curl --request GET \
--url https://supertoneapi.com/v1/custom-voices/search \
--header 'x-sup-api-key: <api-key>'{
"items": [
{
"voice_id": "voice_123456789",
"name": "My Custom Voice",
"description": "A warm and friendly voice for customer service"
}
],
"total": 25,
"next_page_token": "10"
}https://supertoneapi.com/v1/custom-voices/search
| 파라미터 | 설명 | 예시 |
|---|---|---|
name | 보이스 이름으로 검색 (부분 일치) | My cloned voice 1 |
description | 설명으로 검색 (부분 일치) | kind and gentle 등 |
Number of items per page (default: 20, min: 10, max: 100)
Token for pagination (obtained from the previous page's response)
Search across name. Space separated.
Search across description. Space separated.
Paginated custom voices search response with next page token