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

# Get User App Settings

> Get the current user's app settings.

Returns language, analytics consent, sound notifications, and git config.

Args:
    service: UserAppSettingsService (injected by dependency)

Returns:
    UserAppSettingsResponse: The user's app settings

Raises:
    HTTPException: 401 if user is not authenticated
    HTTPException: 404 if user not found
    HTTPException: 500 if retrieval fails



## OpenAPI

````yaml /openapi/openhands-cloud.json get /api/users/app
openapi: 3.1.0
info:
  title: OpenHands
  description: 'OpenHands: Code Less, Make More'
  version: 0.0.1
servers: []
security: []
paths:
  /api/users/app:
    get:
      summary: Get User App Settings
      description: >-
        Get the current user's app settings.


        Returns language, analytics consent, sound notifications, and git
        config.


        Args:
            service: UserAppSettingsService (injected by dependency)

        Returns:
            UserAppSettingsResponse: The user's app settings

        Raises:
            HTTPException: 401 if user is not authenticated
            HTTPException: 404 if user not found
            HTTPException: 500 if retrieval fails
      operationId: get_user_app_settings_api_users_app_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserAppSettingsResponse'
components:
  schemas:
    UserAppSettingsResponse:
      properties:
        language:
          anyOf:
            - type: string
            - type: 'null'
          title: Language
        user_consents_to_analytics:
          anyOf:
            - type: boolean
            - type: 'null'
          title: User Consents To Analytics
        enable_sound_notifications:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Enable Sound Notifications
        git_user_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Git User Name
        git_user_email:
          anyOf:
            - type: string
              format: email
            - type: 'null'
          title: Git User Email
        git_full_clone:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Git Full Clone
      type: object
      title: UserAppSettingsResponse
      description: Response model for user app settings.

````