# Avatar Object div strong 🔨 In Development — This section is still being developed and may change. Represents a predefined avatar image that can be used for assistants and user profiles. ## Properties **`id`** string Unique identifier for the avatar. Format: `avt_` followed by a descriptive name. **`name`** string Human-readable name for the avatar. **`url`** string Full-resolution URL for the avatar image (512x512 PNG). **`previewUrl`** string Thumbnail preview URL for the avatar (smaller size for list views). **`category`** string Category classification for the avatar. Values: `robots`, `assistants`, `professional`, `creative`, `support`, `technical`, `abstract`. **`tags`** array Array of descriptive tags for filtering and search. **`size`** object Dimensions of the avatar image. - `width` - Image width in pixels (typically 512) - `height` - Image height in pixels (typically 512) ## Example Avatar ```json { "id": "avt_robot_blue", "name": "Blue Robot", "url": "https://cdn.aitronos.com/avatars/robot-blue.png", "previewUrl": "https://cdn.aitronos.com/avatars/previews/robot-blue-thumb.png", "category": "robots", "tags": ["robot", "blue", "tech", "ai"], "size": { "width": 512, "height": 512 } } ```