Vocu Developers
🇺🇸 English
  • 🇺🇸 English
  • 🇨🇳 简体中文
Api Docs(Current)User GuideBack To APP
Api Docs(Current)User GuideBack To APP
🇺🇸 English
  • 🇺🇸 English
  • 🇨🇳 简体中文
  1. Content Template
  • 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. Content Template

Get Template Details with Specified ID

GET
https://v1.vocu.ai/api/template/{id}

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 GET 'https://v1.vocu.ai/api/template/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Template Details Retrieved Successfully
application/json
Body

Example
{
    "status": 200,
    "message": "OK",
    "data": {
        "id": "c9baa76f-de5f-4746-afbc-dffd4b9fb7ab",
        "name": "Gou Fang",
        "contents": [
            {
                "metaVoiceId": 44,
                "text": "Tender dog meat skewers, brushed with a sweet and spicy banana sauce, served over fragrant jasmine rice."
            }
        ],
        "metadata": {
            "metaVoiceId": 2,
            "description": "Template containing many food descriptions"
        },
        "userId": "a031f1b6-06e1-4bf7-bf06-3994ae08df25",
        "from": "community",
        "originId": "5b1fcba0-9dbe-4111-a177-f541356762b3"
    }
}
🟠404Template with the specified ID not found
Modified at 2025-11-09 12:11:15
Previous
Get User's Template List
Next
Delete Template with Specified ID