> ## 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.

# List Profiles

> List all saved LLM profiles.

Returns profile names with basic model info. API keys are never exposed.



## OpenAPI

````yaml /openapi/openhands-cloud.json get /api/v1/settings/profiles
openapi: 3.1.0
info:
  title: OpenHands
  description: 'OpenHands: Code Less, Make More'
  version: 0.0.1
servers: []
security: []
paths:
  /api/v1/settings/profiles:
    get:
      tags:
        - Settings
      summary: List Profiles
      description: |-
        List all saved LLM profiles.

        Returns profile names with basic model info. API keys are never exposed.
      operationId: list_profiles_api_v1_settings_profiles_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/openhands__app_server__settings__settings_router__ProfileListResponse
      security:
        - APIKeyHeader: []
components:
  schemas:
    openhands__app_server__settings__settings_router__ProfileListResponse:
      properties:
        profiles:
          items:
            $ref: >-
              #/components/schemas/openhands__app_server__settings__settings_router__ProfileInfo
          type: array
          title: Profiles
        active_profile:
          anyOf:
            - type: string
            - type: 'null'
          title: Active Profile
      type: object
      required:
        - profiles
      title: ProfileListResponse
      description: Response body for listing profiles.
    openhands__app_server__settings__settings_router__ProfileInfo:
      properties:
        name:
          type: string
          title: Name
        model:
          anyOf:
            - type: string
            - type: 'null'
          title: Model
        base_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Base Url
        api_key_set:
          type: boolean
          title: Api Key Set
          default: false
      type: object
      required:
        - name
      title: ProfileInfo
      description: |-
        Profile summary returned by the list endpoint.

        ``api_key_set`` follows the same convention as ``llm_api_key_set`` on
        the main settings response — the frontend uses it to show "key stored"
        without exposing (or accidentally round-tripping) a mask string.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Access-Token

````