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
    • Core
      • Voice Character
        • Manage
          • Get the list of voice characters for the current user
          • Get details of the voice character with the specified ID
          • Create a new voice character
          • Update a voice character's name and description
          • Upload avatar for the voice character with the specified ID
          • Delete Voice Character with the specified ID
        • Styles
          • Get the transcription of a style's reference audio
          • Add a style to the voice character with the specified ID
          • Correct the transcription of a style's reference audio
          • Update a style's name and description
          • Set a style as the default style
          • Reset a style and reprocess its reference audio
          • Delete Style of the specified ID for the Voice Character with the specified ID
      • Voice Generation
        • Async jobs
          • Get the list of asynchronous generation tasks for the current user
          • Get the details of an asynchronous generation task by ID
          • Create Asynchronous Voice Generation Task
          • Upload audio for voice conversion
          • Delete an asynchronous generation task by ID
        • Synchronous
          • List synthesis parameter presets
          • One-shot synthesis returning an MP3 stream directly
          • Synchronous real-time voice generation
    • Creative
      • Templates
        • Get User's Template List
        • Get Template Details with Specified ID
        • Create New Template
        • Update Template with Specified ID
        • Delete Template with Specified ID
    • Account
      • User
        • Get current user account information
    • Advanced
      • Splitter
        • List splitter configurations
        • Get splitter configuration details
        • Create a splitter configuration
        • Update a splitter configuration (diff mode)
        • Delete a splitter configuration
    • Schemas
      • Generation Template
      • Generation Task
      • Voice Character
      • General Generation Parameters (New)
      • ErrorResponse

    Generate(Generation Task)

    Asynchronous Generation Task Details

    {
        "id": "string",
        "userId": "string",
        "status": "pending",
        "type": "reecho-neural-voice-001",
        "metadata": {
            "contents": [
                {
                    "type": "text",
                    "voiceId": "string",
                    "text": "string",
                    "audio": "string",
                    "generatedAt": "2019-08-24T14:15:22.123Z",
                    "preset": "balance",
                    "break_clone": true,
                    "language": "auto",
                    "vivid": false,
                    "emo_switch": [
                        0,
                        0,
                        0,
                        0,
                        0
                    ],
                    "speechRate": 1,
                    "flash": false,
                    "stream": false,
                    "seed": -1,
                    "input_audio": "http://example.com",
                    "vc_mode": "standard",
                    "high_quality": true
                }
            ],
            "characters": 0,
            "voices": [
                {
                    "id": "string",
                    "name": "string",
                    "status": "creating",
                    "metadata": {
                        "avatar": "string",
                        "description": "string",
                        "prompts": [
                            {
                                "id": "string",
                                "name": "string",
                                "promptOriginAudioStorageUrl": "string",
                                "playBackAudio": "string",
                                "description": "string",
                                "language": "auto",
                                "vocalFilter": true
                            }
                        ]
                    },
                    "version": "v1.0",
                    "from": "upload"
                }
            ],
            "isPremium": true,
            "audio": "string",
            "generatedAt": "2019-08-24T14:15:22.123Z",
            "srt": false
        }
    }