---
title: "Get Heygen Avatar Groups"
method: GET
path: "/api/v1/video/heygen-avatar-groups"
tags: ["video"]
---

# Get Heygen Avatar Groups

`GET /api/v1/video/heygen-avatar-groups`

Get all available avatar groups from HeyGen with pagination.

Args:
    include_public: Whether to include public avatar groups (default: False)
    limit: Number of avatar groups to return (1-100, default: 20)
    offset: Number of avatar groups to skip (default: 0)

Returns:
    Paginated list of avatar groups with their properties and pagination metadata.
    
Response format:
    {
        "success": true,
        "data": {
            "avatar_groups": [
                {
                    "avatar_group_id": "...",
                    "avatar_group_name": "...",
                    "avatars": [...]
                }
            ],
            "pagination": {
                "total": 10,
                "limit": 20,
                "offset": 0,
                "count": 10,
                "has_more": false
            }
        }
    }

## Query parameters

- `include_public` boolean — Include public avatar groups
- `limit` integer — Number of avatar groups to return
- `offset` integer — Number of avatar groups to skip

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/brandbooster/apis/fastapi.md) · [All operations](https://skmtc.dev/brandbooster/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/brandbooster/fastapi/revisions/ff7f2b621b41/schema)
