Query Standard Timbre Paginated List

Last Updated on : 2026-07-21 08:25:24Copy for LLMView as MarkdownDownload PDF

Queries a paginated list of standard timbres.

API address

GET: /v1.0/cloud/agent/ai/timbre/b/devices/{device_id}/market-timbres

Request parameter

Parameter nameTypeINRequiredDescription
device_idStringpathtrueDevice ID
tagStringqueryfalseTimbre tag
key_wordStringqueryfalseTimbre name
langStringquerytrueLanguage
page_noIntegerquerytruePage number, starting from 1.
page_sizeIntegerquerytrueNumber of items per page

Return parameter

Parameter nameTypeDescription
codeIntegerThe error code on failure. The value is empty on success.
successBooleanIndicates whether the operation is successful:
  • true: success
  • false:failure
msgStringThe error message on failure. The field is empty on success.
tLongThe returned 13-digit timestamp.
resultListThe returned result.

Description of result

Parameter nameTypeDescription
voice_idStringTimbre ID
voice_nameStringTimbre name
desc_tagsListList of description tags
support_langsListList of supported languages
speedStringDefault speech speed
demo_urlStringURL of the demo audio

Request example

GET: /v1.0/cloud/agent/ai/timbre/b/devices/abc123/market-timbres?tag=gentle&key_word=Alice&lang=en&page_no=1&page_size=20
{
  "path": {
    "device_id": "abc123"
  },
  "query": {
    "tag": "gentle",
    "key_word": "Alice",
    "lang": "en",
    "page_no": 1,
    "page_size": 20
  }
}

Return example

{
    "msg": null,
    "code": null,
    "result": [
        {
            "voice_id": "voice_001",
            "demo_url": "https://example.com/demo.mp3",
            "support_langs": [
                "en",
                "zh"
            ],
            "voice_name": "Alice",
            "speed": "1.0",
            "desc_tags": [
                "gentle",
                "warm"
            ]
        }
    ],
    "t": 1573441137000,
    "success": true
}

Error code

For more information, see error code.