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: <x-sup-api-key>'
{
  "items": [
    {
      "voice_id": "<string>",
      "name": "<string>",
      "description": "<string>"
    }
  ],
  "total": 25,
  "nextPageToken": "10"
}
보이스를 조건에 따라 검색할 수 있는 API입니다.
내 계정에서 사용 가능한 고객 등록 보이스를 이름, 설명 등 다양한 조건으로 필터링할 수 있습니다.

주요 파라미터

파라미터설명예시
name보이스 이름으로 검색 (부분 일치)My cloned voice 1
description설명으로 검색 (부분 일치)kind and gentle

Headers

x-sup-api-key
string
required

API key for the service

Query Parameters

page_size
number

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

name
string

Search across name. Space separated.

description
string

Search across description. Space separated.

next_page_token
string

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

Response

200
application/json

Paginated custom voices search response with next page token

The response is of type object.