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

# Get customer avatar



## OpenAPI

````yaml get /v1/customers/{id}/avatar
openapi: 3.0.0
info:
  title: Corebanq - Customers API
  description: API endpoints for customer management
  version: 1.0.0
servers: []
security: []
paths:
  /v1/customers/{id}/avatar:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    get:
      summary: Get customer avatar
      responses:
        '200':
          description: Customer avatar
          content:
            image/*:
              schema:
                type: string
                format: binary

````