On this page

View Digital Human Details

2026-03-20

Description

Through this API, you can obtain detailed information about a Digital Human.

Request prototype

  • Request method: POST
  • Request body format: JSON
  • Request URL: https://aigc-digitalhuman-api.zegotech.cn?Action=GetDigitalHumanInfo
  • 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
DigitalHumanIdStringYesDigital Human ID. You can obtain it from the response of the GetDigitalHumanList API.

Request Example

  • Request URL:

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

    {
        "DigitalHumanId": "fa592895-d988-4584-b27b-97b8f4b921ad"
    }

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.
└DigitalHumanIdStringDigital Human ID.
└NameStringDigital Human name.
└AvatarUrlStringDigital Human image URL. The access validity period is 24 hours.
└IsPublicBooleanWhether it is a public Digital Human.
└ActionsArray of ObjectList of actions supported by the Digital Human. For details, refer to Action.

Action

ParameterTypeDescription
ActionStringAction name.
PreviewUrlStringAction preview video URL.

Response Example

{
    "Code": 0,
    "Message": "success",
    "RequestId": "52ef286e-0ee5-4cbb-ba93-45c4f89c5d00",
    "Data": {
        "DigitalHumanId": "fa592895-d988-4584-b27b-97b8f4b921ad",
        "Name": "xxx",
        "AvatarUrl": "https://xxx.com/xxx.png",
        "Actions": [
            {
                "Action": "802_921474",
                "PreviewUrl": "https://xxx.com/preview/xxx/xxx.mp4"
            },
            {
                "Action": "790_421367",
                "PreviewUrl": "https://xxx.com/preview/xxx/xxx.mp4"
            },
            {
                "Action": "804_750085",
                "PreviewUrl": "https://xxx.com/preview/xxx/xxx.mp4"
            },
            {
                "Action": "idle_action",
                "PreviewUrl": "https://xxx.com/preview/xxx/xxx.mp4"
            },
            {
                "Action": "mute_action",
                "PreviewUrl": "https://xxx.com/preview/xxx/xxx.mp4"
            }
        ],
        "IsPublic": true
    }
}

Previous

Query Digital Human List

Next

Query Timbre Info

On this page

Back to top