Vocu Developers
🇺🇸 English
  • 🇺🇸 English
  • 🇨🇳 简体中文
Api Docs(Current)User GuideBack To APP
Api Docs(Current)User GuideBack To APP
🇺🇸 English
  • 🇺🇸 English
  • 🇨🇳 简体中文
  1. Voice Character
  • Overview
  • Authentication Method
  • Voice Character
    • Create a new voice character
      POST
    • Add a style to the voice character with the specified ID
      POST
    • Upload avatar for the voice character with the specified ID
      POST
    • Add a voice character to the account via a share ID
      POST
    • Get the list of voice characters for the current user
      GET
    • Get details of the voice character with the specified ID
      GET
    • Get the one-time share link ID for the specified voice character ID
      GET
    • Delete Voice Character with the specified ID
      DELETE
    • Delete Style of the specified ID for the Voice Character with the specified ID
      DELETE
  • Voice Generation
    • Synchronous real-time voice generation
      POST
    • Create Asynchronous Voice Generation Task
      POST
    • Get the list of asynchronous generation tasks for the current user
      GET
    • Get the details of an asynchronous generation task by ID
      GET
    • Delete an asynchronous generation task by ID
      DELETE
  • User Account
    • Get current user account information
      GET
  • Content Template
    • Create New Template
      POST
    • Update Template with Specified ID
      POST
    • Get User's Template List
      GET
    • Get Template Details with Specified ID
      GET
    • Delete Template with Specified ID
      DELETE
  1. Voice Character

Get the list of voice characters for the current user

GET
https://v1.vocu.ai/api/voice

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://v1.vocu.ai/api/voice?from&showMarket' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Successfully retrieved voice character list
application/json
Body

Example
{
    "status": 200,
    "message": "OK",
    "data": [
        {
            "id": "ac68e5c9-25d6-4024-b42e-9777c6277b14",
            "idForGenerate": "bf20083c-b161-46eb-8a7e-d9bc62ea7aaf",
            "name": "Sai Guolan",
            "status": "pending",
            "metadata": {
                "avatar": "https://loremflickr.com/3851/3726?lock=5020255648078239",
                "description": "Armchair enthusiast, graduate",
                "prompts": [
                    {
                        "id": "4dd2f015-1c9d-403e-8ef0-23ca76b8ebad",
                        "name": "Brave",
                        "promptOriginAudioStorageUrl": "https://storage.vocu.ai/prompt/744386/002747-playback-lijo9z.mp3"
                    }
                ]
            }
        },
        {
            "id": "ea6c112a-6c78-4d7d-beda-14cecf9fa85b",
            "idForGenerate": "7f6d050c-b227-4cd8-8b2e-03cd53f7fd5c",
            "name": "Che Ziyan",
            "status": "lora-success",
            "metadata": {
                "avatar": "https://loremflickr.com/1215/2227?lock=5797113421436778",
                "description": "Dreamer, inventor, gourmet",
                "prompts": [
                    {
                        "id": "c6955615-18cb-4189-8207-1e7b06a07c10",
                        "name": "Cold",
                        "promptOriginAudioStorageUrl": "https://storage.vocu.ai/prompt/035564/083043-playback-ozp48y.mp3"
                    },
                    {
                        "id": "a5c925ad-ea35-4d89-ae06-c4e538c617e3",
                        "name": "Bitter",
                        "promptOriginAudioStorageUrl": "https://storage.vocu.ai/prompt/538614/851232-playback-u5biu8.mp3"
                    }
                ]
            }
        }
    ]
}
Modified at 2025-11-09 12:19:18
Previous
Add a voice character to the account via a share ID
Next
Get details of the voice character with the specified ID