---
title: "List Avatar Groups"
method: GET
path: "/v3/avatars"
tags: ["Avatars"]
---

# List Avatar Groups

`GET /v3/avatars`

Returns a paginated list of avatar groups (characters). Each group contains one or more looks. Filterable by ownership.

## Query parameters

- `ownership` 'public' | 'private'
- `limit` integer
- `token` string

## Response `200`

Successful response

- object
  - `data` AvatarGroupItem[]
    - `id` string, required — Unique avatar group identifier.
    - `name` string, required — Display name of the avatar.
    - `preview_image_url` string, nullable — URL to the avatar preview image.
    - `preview_video_url` string, nullable — URL to the avatar preview video.
    - `gender` string, nullable — Gender of the avatar.
    - `created_at` integer, required — Unix timestamp (seconds) when the avatar was created.
    - `looks_count` integer, required — Number of looks (outfits/styles) available for this avatar.
    - `default_voice_id` string, nullable — Default voice ID for this avatar.
    - `consent_status` string, nullable — The status of consent for the group. None means consent is not required.
    - `status` 'processing' | 'pending_consent' | 'failed' | 'completed' — Training/creation status of an avatar group or look.
    - `error` AvatarError — Error details for a failed avatar creation.
      - `code` string, required — Machine-readable error code.
      - `message` string, required — Human-readable error description.
  - `has_more` boolean — Whether more pages are available
  - `next_token` string, nullable — Opaque cursor for the next page

## Other responses

- `400` — Invalid request parameters
- `401` — Authentication failed
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/heygen/apis/heygen-external-api.md) · [All operations](https://skmtc.net/heygen/apis/heygen-external-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/heygen/heygen-external-api/versions/e2e54726e210/schema)
