---
title: "Get Heygen Avatars"
method: GET
path: "/api/v1/video/heygen-avatars"
tags: ["video"]
---

# Get Heygen Avatars

`GET /api/v1/video/heygen-avatars`

Get all available avatars from HeyGen with pagination.

Args:
    limit: Number of avatars to return (1-100, default: 20)
    offset: Number of avatars to skip (default: 0)

Returns:
    Paginated list of available avatars with their IDs, properties, and pagination metadata.
    
Response format:
    {
        "success": true,
        "data": {
            "avatars": [...],
            "pagination": {
                "total": 150,
                "limit": 20,
                "offset": 0,
                "count": 20,
                "has_more": true
            }
        }
    }

## Query parameters

- `limit` integer — Number of avatars to return
- `offset` integer — Number of avatars 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/624917d53409/schema)
