# Lists Models

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /models:
    get:
      summary: Lists Models
      deprecated: false
      description: >-
        Lists the currently available models, and provides basic information
        about each one such as the owner and availability. Check [Models &
        Pricing](https://api-docs.deepseek.com/quick_start/pricing) for our
        currently supported models.
      tags:
        - API Reference
      parameters: []
      responses:
        '200':
          description: OK, return to the model list
          content:
            application/json:
              schema:
                type: object
                properties:
                  object:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        object:
                          type: string
                        owned_by:
                          type: string
                      required:
                        - id
                        - object
                        - owned_by
                      x-apidog-orders:
                        - id
                        - object
                        - owned_by
                required:
                  - object
                  - data
                x-apidog-orders:
                  - object
                  - data
              example:
                object: list
                data:
                  - id: deepseek-chat
                    object: model
                    owned_by: deepseek
                  - id: deepseek-reasoner
                    object: model
                    owned_by: deepseek
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: API Reference
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/806570/apis/api-13759458-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: bearer
      scheme: bearer
servers:
  - url: https://api.deepseek.com
    description: Prod Env
security:
  - bearer: []
    x-apidog:
      required: true
      schemeGroups:
        - id: n8qJSdwi83VLcgtIOHMrr
          schemeIds:
            - bearer
      use:
        id: n8qJSdwi83VLcgtIOHMrr

```
