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

# List available models

> This endpoint can be used to get the list of available models for your API key.



## OpenAPI

````yaml /api-reference/openapi-v2.yaml get /api/v2/models
openapi: 3.0.3
info:
  title: Paradigm API
  version: xenial-xerus (v2)
  description: >-
    A versatile and adaptable tool designed to integrate Generative AI into your
    applications
servers:
  - url: https://paradigm.lighton.ai
security: []
tags:
  - name: Models
    description: Operations about AI models
  - name: Files Search
    description: Operations about files search
  - name: Files
    description: Operations about files
  - name: Upload Sessions
    description: Operations about upload sessions
  - name: Workspaces
    description: Operations about workspaces
  - name: Users
    description: Operations about users
  - name: Companies
    description: Operations about companies
  - name: SCIM
    description: Operations about SCIM
  - name: Feedbacks
    description: Operations about feedbacks
  - name: Reporting
    description: Operations about reporting
  - name: Monitoring
    description: Operations about monitoring
  - name: Platform Status
    description: Operations about platform status
paths:
  /api/v2/models:
    get:
      tags:
        - Models
      summary: List available models
      description: >-
        This endpoint can be used to get the list of available models for your
        API key.
      operationId: api_v2_models_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListMLModelsResponse'
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    ListMLModelsResponse:
      type: object
      description: Response serializer for listing available ML models.
      properties:
        object:
          type: string
          readOnly: true
          default: list
          description: Object type, always 'list' for model listings
        data:
          type: array
          items:
            $ref: '#/components/schemas/MLModelResponse'
          readOnly: true
          description: Array of available ML models and their finetunes
      required:
        - data
        - object
    MLModelResponse:
      type: object
      description: Serializer for individual ML model objects.
      properties:
        object:
          type: string
          readOnly: true
          default: model
          description: Object type, always 'model'
        name:
          type: string
          maxLength: 120
        model_type:
          $ref: '#/components/schemas/ModelTypeEnum'
        deployment_type:
          $ref: '#/components/schemas/DeploymentTypeEnum'
        enabled:
          type: boolean
        technical_name:
          type: string
          maxLength: 120
        start_messages_template:
          type: string
          description: >-
            List of dictionary of messages to be used to start the conversation.
            Authorized labels in the template: ['date', 'company_instructions',
            'user_first_name', 'user_last_name', 'user_instructions']
          maxLength: 5000
        is_default_for_company:
          type: boolean
          readOnly: true
      required:
        - is_default_for_company
        - name
        - object
    ModelTypeEnum:
      enum:
        - Large Language Model
        - Embedding Model
        - Vision Language Model
        - Multi-Vector Model
      type: string
      description: |-
        * `Large Language Model` - Large Language Model
        * `Embedding Model` - Embedding Model
        * `Vision Language Model` - Vision Language Model
        * `Multi-Vector Model` - Multi Vector Model
    DeploymentTypeEnum:
      enum:
        - Self-Hosted
        - External
      type: string
      description: |-
        * `Self-Hosted` - Self Hosted
        * `External` - External
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer authentication header of the form `Bearer <token>`, where
        `<token>` is your auth token.

````