Skip to main content
POST
/
openapi
/
v1
/
assets
/
voice
/
clone
/
list
List cloned voices
curl --request POST \
  --url https://api.vmeg.ai/openapi/v1/assets/voice/clone/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "voiceId": "<string>",
  "voiceIds": [
    "<string>"
  ],
  "searchName": "<string>",
  "currentPage": 1,
  "pageSize": 10,
  "orderBy": "<string>",
  "order": "desc"
}
'
{
  "code": 200,
  "message": "",
  "data": {
    "records": [
      {
        "voiceId": "<string>",
        "name": "<string>",
        "provider": "<string>",
        "exampleLanguage": "<string>",
        "content": "<string>",
        "audio": "<string>",
        "taskId": "<string>",
        "createTime": "<string>",
        "updateTime": "<string>"
      }
    ],
    "total": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vmeg.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API Key in the Authorization header (Bearer <api_key>). See Authentication.

Body

application/json
voiceId
string

Filter by cloned voiceId. See Voices

voiceIds
string[]

Filter by cloned voice IDs. See Voices

searchName
string

Search by clone name

currentPage
integer
default:1

Page number (1-based)

pageSize
integer
default:10

Page size

orderBy
string

voiceId / name / create_time / update_time

order
string
default:desc

Sort direction: asc or desc

Response

200 - application/json

Success

code
integer
required

Business code; 200 means success

Example:

200

message
string

Human-readable detail when code is not success

Example:

""

data
object