Skip to main content
GET
/
v1
/
custom-voices
/
search
Search custom (cloned) voices
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"
}
이 문서는 영어 원문을 기반으로 자동 번역되었습니다. 표현이 어색하거나 모호한 부분이 있을 수 있으니, 정확한 내용은 영어 원문을 함께 확인해 주세요.
주어진 필터와 일치하는 계정의 커스텀 보이스를 반환합니다.

엔드포인트

GET https://supertoneapi.com/v1/custom-voices/search

쿼리 파라미터

NameDescriptionExample
name보이스 이름, 부분 일치.narrator
description설명, 부분 일치.kind and gentle
page_size페이지당 항목 수입니다. 기본값 20, 최대 100.50
next_page_token이전 응답의 토큰입니다.eyJpZCI6IjEyMzQ1In0=

응답

커스텀 보이스 객체의 items 배열과 선택적 next_page_token을 반환합니다.

함께 보기

Docs: Custom voices

전체 라이프사이클: 생성, 나열, 검색, 업데이트, 삭제.

List custom voices

필터링 없이 모든 커스텀 보이스를 가져옵니다.

Authorizations

x-sup-api-key
string
header
required

Query Parameters

page_size
number

Number of items per page (default: 20, min: 10, max: 100)

next_page_token
string

Token for pagination (obtained from the previous page's response)

name
string

Search across name. Space separated.

description
string

Search across description. Space separated.

Response

Paginated custom voices search response with next page token

items
object[]
required

List of custom voice items

total
number
required

Total number of available custom voices

Example:

25

next_page_token
string

Token for fetching the next page of results. A valid non-negative integer string (e.g., "10", "20"). Null if no more pages.

Example:

"10"