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

# Get Model Configuration



## OpenAPI

````yaml /openapi.json get /v1/model-configurations/{model_configuration_id}
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/{model_configuration_id}:
    get:
      tags:
        - model-configurations
      summary: Get Model Configuration
      operationId: >-
        get_model_configuration_v1_model_configurations__model_configuration_id__get
      parameters:
        - name: model_configuration_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Model Configuration Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelConfigurationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      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.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          additionalProperties: true
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````