API Reference
Avatars

Avatars

List and retrieve available avatar configurations.

List Avatars

GET /v1/avatars

Returns a list of all available avatars for your account.

Example Request

curl https://api.avatarium.ai/v1/avatars \
  -H "Authorization: Bearer av_live_xxxxx"

Example Response

{
  "avatars": [
    {
      "id": "aria-001",
      "name": "Aria",
      "description": "Friendly and professional assistant",
      "preview_url": "https://cdn.avatarium.ai/previews/aria-001.webp",
      "model_url": "https://cdn.avatarium.ai/models/aria-001.glb",
      "default_voice": "en-US-Neural2-F",
      "tags": ["professional", "friendly", "female"]
    },
    {
      "id": "max-001",
      "name": "Max",
      "description": "Energetic and helpful guide",
      "preview_url": "https://cdn.avatarium.ai/previews/max-001.webp",
      "model_url": "https://cdn.avatarium.ai/models/max-001.glb",
      "default_voice": "en-US-Neural2-D",
      "tags": ["energetic", "casual", "male"]
    }
  ]
}

Get Avatar

GET /v1/avatars/:id

Retrieves detailed information about a specific avatar.

Path Parameters

ParameterTypeDescription
idstringAvatar ID

Example Request

curl https://api.avatarium.ai/v1/avatars/aria-001 \
  -H "Authorization: Bearer av_live_xxxxx"

Example Response

{
  "id": "aria-001",
  "name": "Aria",
  "description": "Friendly and professional assistant with a warm demeanor",
  "preview_url": "https://cdn.avatarium.ai/previews/aria-001.webp",
  "model_url": "https://cdn.avatarium.ai/models/aria-001.glb",
  "animations": {
    "idle": "idle_breathing",
    "talking": "talk_gesture",
    "thinking": "think_look"
  },
  "voice": {
    "default": "en-US-Neural2-F",
    "alternatives": [
      "en-GB-Neural2-A",
      "en-AU-Neural2-A"
    ]
  },
  "traits": {
    "personality": "friendly, professional, helpful",
    "speaking_style": "clear, warm, encouraging"
  },
  "tags": ["professional", "friendly", "female"]
}

Available Avatars

IDNameDescription
aria-001AriaFriendly professional assistant
max-001MaxEnergetic helpful guide
luna-001LunaCalm and thoughtful advisor
sam-001SamCasual tech-savvy helper
elena-001ElenaSophisticated business consultant
kai-001KaiCreative and inspiring coach