---
title: "Create Avatar"
method: POST
path: "/api/v1/custom-avatar/create"
tags: ["customAvatar"]
---

# Create Avatar

`POST /api/v1/custom-avatar/create`

Create a new custom avatar with variations

## Request body

- CreateCustomAvatarRequestDTO
  - `name` string, required
  - `variations` VariationDTO[], required
    - `name` string, required
    - `image_url` string, required
    - `thumbnail` string, nullable
  - `elevenlabs_voice_id` string, nullable

## Response `200`

Successful Response

- CustomAvatarResponseDTO
  - `id` string, uuid4, required
  - `name` string, required
  - `elevenlabs_voice_id` string, nullable
  - `user_id` string, uuid4, nullable
  - `createdAt` string, date-time, nullable
  - `updatedAt` string, date-time, nullable
  - `variations` VariationResponseDTO[]
    - `id` string, uuid4, required
    - `avatar_id` string, uuid4, required
    - `name` string, required
    - `image_url` string, required
    - `thumbnail` string, nullable
    - `createdAt` string, date-time, nullable
    - `updatedAt` string, date-time, nullable

## 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)
