# 列出模型

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /models:
    get:
      summary: 列出模型
      deprecated: false
      description: >-
        列出可用的模型列表，并提供相关模型的基本信息。请前往[模型 &
        价格](https://api-docs.deepseek.com/zh-cn/quick_start/pricing)查看当前支持的模型列表
      tags:
        - API 文档
      parameters: []
      responses:
        '200':
          description: OK, 返回模型列表
          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-apifox-orders:
                        - id
                        - object
                        - owned_by
                required:
                  - object
                  - data
                x-apifox-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-apifox-name: 成功
      security: []
      x-apifox-folder: API 文档
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/5813541/apis/api-257840922-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: bearer
      scheme: bearer
servers:
  - url: https://api.deepseek.com
    description: 正式环境
security:
  - bearer: []
    x-apifox:
      schemeGroups:
        - id: DOp0WuT-c0vg6PnvNSIS-
          schemeIds:
            - bearer
      required: true
      use:
        id: DOp0WuT-c0vg6PnvNSIS-

```
