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

# List Custom LLMs

> List the custom LLM configurations available to the current organization.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/custom-llms
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/custom-llms:
    get:
      tags:
        - Custom LLMs
      summary: List Custom LLMs
      description: >-
        List the custom LLM configurations available to the current
        organization.
      operationId: list_custom_llms_v1_custom_llms_get
      parameters:
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Skyvern API key for authentication. API key can be found at
              https://app.skyvern.com/settings.
            title: X-Api-Key
          description: >-
            Skyvern API key for authentication. API key can be found at
            https://app.skyvern.com/settings.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomLLMListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CustomLLMListResponse:
      properties:
        custom_llms:
          items:
            $ref: '#/components/schemas/CustomLLM'
          type: array
          title: Custom Llms
      type: object
      required:
        - custom_llms
      title: CustomLLMListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CustomLLM:
      properties:
        id:
          type: string
          title: Id
        organization_id:
          type: string
          title: Organization Id
        config:
          $ref: '#/components/schemas/CustomLLMConfig'
        created_at:
          type: string
          title: Created At
        modified_at:
          type: string
          title: Modified At
        valid:
          type: boolean
          title: Valid
      type: object
      required:
        - id
        - organization_id
        - config
        - created_at
        - modified_at
        - valid
      title: CustomLLM
    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
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    CustomLLMConfig:
      properties:
        display_name:
          type: string
          maxLength: 120
          minLength: 1
          title: Display Name
        provider:
          $ref: '#/components/schemas/CustomLLMProvider'
        model_name:
          type: string
          maxLength: 250
          minLength: 1
          title: Model Name
        api_base:
          anyOf:
            - type: string
              maxLength: 500
            - type: 'null'
          title: Api Base
        api_key:
          anyOf:
            - type: string
              maxLength: 1000
            - type: 'null'
          title: Api Key
        api_version:
          anyOf:
            - type: string
              maxLength: 100
            - type: 'null'
          title: Api Version
        supports_vision:
          type: boolean
          title: Supports Vision
          default: true
        add_assistant_prefix:
          type: boolean
          title: Add Assistant Prefix
          default: false
        max_completion_tokens:
          anyOf:
            - type: integer
              maximum: 1000000
              minimum: 1
            - type: 'null'
          title: Max Completion Tokens
        temperature:
          anyOf:
            - type: number
              maximum: 2
              minimum: 0
            - type: 'null'
          title: Temperature
        reasoning_effort:
          anyOf:
            - type: string
              maxLength: 50
            - type: 'null'
          title: Reasoning Effort
      type: object
      required:
        - display_name
        - provider
        - model_name
      title: CustomLLMConfig
    CustomLLMProvider:
      type: string
      enum:
        - openai_compatible
        - ollama
        - openrouter
      title: CustomLLMProvider

````