Skip to content
Last updated
🔨 In Development — This section is still being developed and may change.
GET/v1/avatars/{avatar_id}

Get a specific avatar by ID for assistant image selection.

Returns avatar details including name, description, and image URL.

avatar_id string required

The unique identifier of the avatar to retrieve.

Returns

Returns an Avatar object if found. Returns a 404 error if the avatar doesn't exist.

cURL
curl https://api.aitronos.com/v1/avatars/avatar_abc123 \
  -H "X-API-Key: $FREDDY_API_KEY"

Response

{
  "id": "avatar_abc123",
  "name": "Professional",
  "description": "Professional business avatar",
  "image_url": "https://cdn.aitronos.com/avatars/professional.png",
  "is_active": true
}