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

# Get avatar image

> Streams the user's avatar as image/webp. Supports ETag/If-None-Match.



## OpenAPI

````yaml /openapi.yaml get /profile/avatar
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /profile/avatar:
    get:
      summary: Get avatar image
      description: Streams the user's avatar as image/webp. Supports ETag/If-None-Match.
      responses:
        '200':
          description: Avatar image
          content:
            image/webp:
              schema:
                type: string
                format: binary
        '304':
          description: Not modified
        '401':
          description: Not authenticated
        '403':
          description: Requires user role
        '404':
          description: No avatar found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````