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

Delete Style of the specified ID for the Voice Character with the specified ID

DELETE
https://v1.vocu.ai/api/voice/{id}/prompt/{promptId}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path 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 DELETE 'https://v1.vocu.ai/api/voice//prompt/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Successfully deleted Style
application/json
Body

Example
{
    "status": 200,
    "message": "OK",
    "data": {
        "id": "72a66b7e-424e-4646-a3f2-165c606ee759",
        "idForGenerate": "7210804c-606a-45c8-8cbe-25f3926cc205",
        "name": "Miu Yan",
        "status": "lora-success",
        "metadata": {
            "avatar": "https://loremflickr.com/997/1034?lock=3398916222260618",
            "description": "Writer, friend, student",
            "prompts": [
                {
                    "id": "92dba043-b13e-4dd5-90bc-acb0d53a9661",
                    "name": "Crisp",
                    "promptOriginAudioStorageUrl": "https://storage.vocu.ai/prompt/788124/983910-playback-z20e11.mp3",
                    "description": "Crisp emotional style"
                },
                {
                    "id": "355929d8-ea91-4d52-9fe4-9a424bc68309",
                    "name": "Flat",
                    "promptOriginAudioStorageUrl": "https://storage.vocu.ai/prompt/233753/039520-playback-7ebnx3.mp3",
                    "description": "Flat emotional style"
                }
            ]
        }
    }
}
🟠400Request Parameter Error
🟠404Voice Character or Style with the specified ID not found
Modified at 2025-11-09 12:11:15
Previous
Delete Voice Character with the specified ID
Next
Synchronous real-time voice generation