Vocu Developers
🇺🇸 English
  • 🇺🇸 English
  • 🇨🇳 简体中文
Api Docs(Current)User GuideBack To APP
Api Docs(Current)User GuideBack To APP
🇺🇸 English
  • 🇺🇸 English
  • 🇨🇳 简体中文
🇺🇸 English
  • 🇺🇸 English
  • 🇨🇳 简体中文
    • 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
    • Schemas
      • Generation Template
      • Generation Task
      • Voice Character
      • General Generation Parameters (New)
    Api Docs(Current)User GuideBack To APP
    Api Docs(Current)User GuideBack To APP
    🇺🇸 English
    • 🇺🇸 English
    • 🇨🇳 简体中文
    🇺🇸 English
    • 🇺🇸 English
    • 🇨🇳 简体中文

    Generate(Generation Task)

    Asynchronous Generation Task Details

    {
        "id": "string",
        "userId": "string",
        "status": "pending",
        "type": "vocu-neural-voice-001",
        "metadata": {
            "contents": [
                {
                    "voiceId": "string",
                    "text": "string",
                    "audio": "string",
                    "generatedAt": "2019-08-24T14:15:22Z",
                    "preset": "balance",
                    "break_clone": true,
                    "language": "auto",
                    "vivid": false,
                    "emo_switch": [
                        0,
                        0,
                        0,
                        0,
                        0
                    ],
                    "speechRate": 1,
                    "flash": false,
                    "stream": false,
                    "seed": -1
                }
            ],
            "characters": 0,
            "voices": [
                {
                    "id": "string",
                    "name": "string",
                    "status": "pending",
                    "metadata": {
                        "avatar": "string",
                        "description": "string",
                        "prompts": [
                            {
                                "id": "string",
                                "name": "string",
                                "promptOriginAudioStorageUrl": "string",
                                "playBackAudio": "string",
                                "description": "string",
                                "language": "auto",
                                "vocalFilter": true
                            }
                        ]
                    },
                    "version": "v2.0",
                    "from": "upload"
                }
            ],
            "isPremium": true,
            "audio": "string",
            "generatedAt": "2019-08-24T14:15:22Z",
            "srt": false
        }
    }