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

# List Model Configurations



## OpenAPI

````yaml /openapi.json get /v1/model-configurations
openapi: 3.1.0
info:
  title: Cyberdesk Cloud
  description: >-
    The Cyberdesk API provides programmatic access to all platform features,
    enabling you to automate desktop tasks at scale.
  version: 1.0.0
servers:
  - url: https://api.cyberdesk.io
    description: Production server
  - url: https://cyberdesk-api-dev.fly.dev
    description: Development server
security: []
paths:
  /v1/model-configurations:
    get:
      tags:
        - model-configurations
      summary: List Model Configurations
      operationId: list_model_configurations_v1_model_configurations_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ModelConfigurationResponse'
                type: array
                title: Response List Model Configurations V1 Model Configurations Get
      security:
        - HTTPBearer: []
components:
  schemas:
    ModelConfigurationResponse:
      properties:
        name:
          type: string
          maxLength: 255
          minLength: 1
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        provider:
          type: string
          maxLength: 50
          minLength: 1
          title: Provider
          description: LangChain provider name (e.g. 'anthropic', 'openai').
        model:
          type: string
          maxLength: 255
          minLength: 1
          title: Model
          description: Provider model identifier (e.g. 'claude-sonnet-4-5-20250929').
        temperature:
          anyOf:
            - type: number
            - type: 'null'
          title: Temperature
        max_tokens:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Tokens
        timeout_seconds:
          anyOf:
            - type: number
            - type: 'null'
          title: Timeout Seconds
        max_retries:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Retries
        additional_params:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Additional Params
          description: Provider-specific kwargs passed through to LangChain.
        agent_harness_version_string:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Harness Version String
          description: >-
            Agent harness version string used by Cyberdesk workers for
            prompt/tool selection.
        is_computer_use_model:
          type: boolean
          title: Is Computer Use Model
          description: >-
            True if this model has native computer use capabilities. If True,
            can be used for main agent, focused actions, and fallbacks for those
            agents.
          default: false
        is_archived:
          type: boolean
          title: Is Archived
          description: >-
            Whether this model configuration is archived and should generally be
            hidden behind archived-model UI affordances.
          default: false
        id:
          type: string
          format: uuid
          title: Id
        organization_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Id
        api_key_alias:
          anyOf:
            - type: string
            - type: 'null'
          title: Api Key Alias
          description: Basis Theory token id (alias) used to resolve api_key at runtime.
        is_system_default:
          type: boolean
          title: Is System Default
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - name
        - provider
        - model
        - id
        - is_system_default
        - created_at
        - updated_at
      title: ModelConfigurationResponse
      description: API response schema for model configurations.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````