Retrieve All Avatar Groups

GEThttps://api.konpro.ai/v1/avatar_groups

Returns a list of avatar groups associated with your KonPro account, along with details about each group. Use the optional parameter to include public avatar groups in the results.

Request History

Log in to see full request history

TIMESTATUSUSER AGENT
Make a request to see history.

0 Requests This Month

Request Parameters

ParameterTypeDescription
include_publicbooleanIf true, includes all public avatar groups; defaults false

cURL Request

shell
curl --request GET \
--url 'https://api.konpro.ai/v1/avatar_groups?include_public=true' \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'

Response

Response Structure

FieldTypeDescription
total_countintegerThe total number of avatar groups returned
avatar_groupsarrayCollection of avatar group objects

Each avatar group object contains:

FieldTypeDescription
idstringUnique identifier for the avatar group
namestringDisplay name of the group
created_atfloatEpoch timestamp (seconds) when the group was created
num_looksintegerNumber of avatars ("looks") within this group
preview_imagestringURL of the group's preview image
group_typestringType of group (e.g., "PUBLIC_PHOTO", "CUSTOM_GROUP")
train_statusstringStatus of training for this group (empty if none)
default_voice_idstringDefault voice ID linked to avatars inside this group

Sample Successful Response

json
{
  "total_count": 2,
  "avatar_groups": [
    {
      "id": "g123",
      "name": "Marketing Team",
      "created_at": 1682507380.0,
      "num_looks": 5,
      "preview_image": "https://cdn.konpro.ai/avatar_groups/marketing-team.jpg",
      "group_type": "CUSTOM_GROUP",
      "train_status": "",
      "default_voice_id": "v001"
    }
  ]
}

Usage Notes

  • The include_public query parameter controls whether global/public avatar groups are shown.
  • API key authentication is required for all requests.
  • Fields such as train_status and default_voice_id may be empty or absent depending on the group's state and configuration.

Example Usage

Shell
curl --request GET \
--url 'https://api.konpro.ai/v1/avatar_groups?include_public=true' \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'

LANGUAGE

CREDENTIALS

HEADER

RESPONSE

Examples

Choose an example:

application/json
200 - Result
400 - Result