> ## 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 profile preferences

> Retrieve user profile preferences



## OpenAPI

````yaml get /v1/profile/preferences
openapi: 3.0.0
info:
  title: Profile API
  version: 1.0.0
  description: API for managing user profiles and profile trays
servers: []
security:
  - bearerAuth: []
tags:
  - name: Profile
    description: Profile management operations
paths:
  /v1/profile/preferences:
    get:
      tags:
        - Profile
      summary: Get profile preferences
      description: Retrieve user profile preferences
      responses:
        '200':
          description: Profile preferences retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfilePreferences'
              example:
                theme: dark
                date_format: DD.MM.YYYY
                currency_display: code
                number_format: swiss
components:
  schemas:
    ProfilePreferences:
      type: object
      properties:
        theme:
          type: string
          enum:
            - light
            - dark
            - system
          description: UI theme preference
        date_format:
          type: string
          description: Preferred date format
        currency_display:
          type: string
          enum:
            - code
            - symbol
          description: How to display currencies
        number_format:
          type: string
          enum:
            - swiss
            - international
          description: Number formatting preference
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````