On this page

Query Digital Human List

2026-03-20

Description

Through this API, you can obtain the list of available Digital Humans.

Request prototype

  • Request method: POST
  • Request body format: JSON
  • Request URL: https://aigc-digitalhuman-api.zegotech.cn?Action=GetDigitalHumanList
  • Transmission protocol: HTTPS
  • QPS limit: 10 times/second

Request Parameters

The following request parameter list only includes API request parameters and some common parameters. For the complete list of common parameters, please refer to API Calling Methods - Common Request Parameters.

ParameterTypeRequiredDescription
FetchModeNumberNoFetch mode:
  • 1: Fetch all.
  • 2: Fetch only public Digital Human list.
  • 3: Fetch only private Digital Human list.
If not specified, defaults to 1.
OffsetNumberNoSpecifies the starting position for fetching, ranging from [0, 1000000]. If not specified, defaults to 0. If the value is less than 0 or greater than 1000000, the API call will return an error.
LimitNumberNoNumber of Digital Human entries to fetch. Ranges from [1, 20]. If not specified, defaults to 20. If the value is less than 1 or greater than 20, the API call will return an error.

Request Example

  • Request URL:

    https://aigc-digitalhuman-api.zegotech.cn?Action=GetDigitalHumanList
    &<common-request-parameters>
  • Request body:

    {
        "FetchMode": 1,
        "Offset": 0,
        "Limit": 10
    }

Response Parameters

ParameterTypeDescription
CodeNumberReturn code. 0 indicates success, other values indicate failure. For error codes and response handling recommendations, please refer to Return Codes.
MessageStringDescription of the request result.
RequestIdStringRequest ID.
DataObjectResponse data.
└TotalNumberTotal number of Digital Humans matching the query conditions.
└DigitalHumansArray of ObjectDigital Human list. For details, refer to DigitalHuman.

DigitalHuman

ParameterTypeDescription
DigitalHumanIdStringDigital Human ID.
NameStringDigital Human name.
AvatarUrlStringDigital Human image URL. The access validity period is 24 hours.
IsPublicBooleanWhether it is a public avatar:
  • true: Public avatar.
  • false: Private avatar.
ActionsArray of ObjectList of actions supported by the Digital Human.
└ActionStringAction name.
└PreviewUrlStringAction preview video URL.

Response Example

{
    "Code": 0,
    "Message": "success",
    "RequestId": "aa62cf9f-2797-4bd0-9cbf-e461b82d75a5",
    "Data": {
        "Total": 1,
        "DigitalHumans": [
            {
                "DigitalHumanId": "077f52b8-1513-49f8-af14-54a57dadda2e",
                "Name": "xxx",
                "AvatarUrl": "https://xxx.com/xxx.png",
                "Actions": [],
                "IsPublic": false
            }
        ]
    }
}

Previous

API Calling Methods

Next

View Digital Human Details

On this page

Back to top