> ## Documentation Index
> Fetch the complete documentation index at: https://kaneo.app/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Download avatar

> Download a user avatar by its avatar ID. Public, immutable, and cache-friendly: the id changes whenever the avatar is replaced.



## OpenAPI

````yaml /openapi.json get /user/avatar/{id}
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /user/avatar/{id}:
    get:
      tags:
        - User
      summary: Download avatar
      description: >-
        Download a user avatar by its avatar ID. Public, immutable, and
        cache-friendly: the id changes whenever the avatar is replaced.
      operationId: getUserAvatar
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: The avatar image
          content:
            image/*:
              schema:
                type: string
                format: binary
        '304':
          description: Not modified
        '404':
          description: Avatar not found
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````