mingyan

SoundClone - Query Records

Query voice cloning model records with filters for conversion status, model ID, and time ranges

POST/kyyAccountCenter/account/sound-model/list

SoundClone Query Records

Query voice cloning model records for the current account, with filters for conversion status, the modelId returned by the preview task, and time ranges.

Authentication

Get Key
All requests must include a Bearer token in the request header:
cURL
Authorization: Bearer {{key}}

Request Info

ItemDescription
MethodPOST
URLhttps://zcbservice.aizfw.cn/kyyAccountCenter/account/sound-model/list
Content-Typeapplication/json
Data scopeOnly records owned by the current Bearer token's account can be queried.

Request Parameters

isConvertedbodyinteger
Conversion status: 0 for not converted, 1 for converted. Omit to query all records.
modelIdbodystring
modelId returned by the preview task. Exact match.
createStartTimebodystring
Creation start time in yyyy-MM-dd HH:mm:ss format.
createEndTimebodystring
Creation end time in yyyy-MM-dd HH:mm:ss format.
convertedStartTimebodystring
Conversion start time in yyyy-MM-dd HH:mm:ss format.
convertedEndTimebodystring
Conversion end time in yyyy-MM-dd HH:mm:ss format.
pagebodyinteger
Page number. Defaults to 1.
pageSizebodyinteger
Number of records per page. Defaults to 20, maximum 200.

Sorting

Records are sorted by creation time in descending order. If creation times are equal, records are sorted by voice model ID in descending order:
sql
ORDER BY create_time DESC, sound_model_id DESC

Response Parameters

codeinteger
Response status code. 0 indicates success.
msgstring
Response message.
dataobject
Paginated data.
data.recordsarray
Records on the current page.
data.totalinteger
Total number of records.
data.sizeinteger
Records per page.
data.currentinteger
Current page number.
data.pagesinteger
Total number of pages.
data.ordersarray
Sorting information.
data.optimizeCountSqlboolean
Whether count query optimization is enabled.
data.searchCountboolean
Whether count query is executed.
data.maxLimitinteger
Maximum records per page.
data.countIdstring
Count query ID.
soundModelIdstring
Voice model ID in this project. UUID.
projectIdstring
Preview task ID that produced this model.
modelIdstring
modelId returned by the preview task.
sampleAudioUrlstring
Sample audio URL.
isConvertedinteger
Conversion status: 0 for not converted, 1 for converted.
convertTransactionIdstring
Transaction ID for the conversion fee charged to the user.
amountnumber
Conversion fee charged to the user.
convertedTimestring
Conversion time in this project, in yyyy-MM-dd HH:mm:ss format.
expireTimestring
Preview model expiration time in yyyy-MM-dd HH:mm:ss format.
createTimestring
Creation time in yyyy-MM-dd HH:mm:ss format.
updateTimestring
Update time in yyyy-MM-dd HH:mm:ss format.