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 User's Template List

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

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/template?offset&limit&from' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Template List Retrieved Successfully
application/json
Body

Example
{
    "status": 200,
    "message": "OK",
    "data": [
        {
            "id": "0678834d-bc6a-48c3-8e9e-9eb9ecf32264",
            "name": "Food Template",
            "contents": [
                {
                    "metaVoiceId": 41,
                    "text": "Eel slow-simmered in a rich sauce with pickled celery and beets, accompanied by creamy turnip."
                },
                {
                    "metaVoiceId": 1,
                    "text": "A special turquoise green bean from the Republic of the Congo. To support its rich flavor, it is served with a large spoonful of orange peel."
                },
                {
                    "metaVoiceId": 35,
                    "text": "Our spicy snake meat, slow-cooked to perfection, served with steamed okra and a rich gravy."
                }
            ],
            "metadata": {
                "metaVoiceId": 19,
                "description": "Template containing many food descriptions"
            },
            "userId": "939e79e0-24f3-44fe-b03c-efb0912f1fac",
            "from": "community",
            "originId": "5d07d7d5-b70d-4666-b3f4-a916bbc75140"
        }
    ]
}
Modified at 2025-11-09 12:11:15
Previous
Update Template with Specified ID
Next
Get Template Details with Specified ID