跳转到主要内容
GET
/
anthropic
/
v1
/
models
获取模型列表
curl --request GET \
  --url https://api.minimaxi.com/anthropic/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "MiniMax-M2.7",
      "created_at": "2026-03-18T02:00:00Z",
      "display_name": "MiniMax-M2.7",
      "type": "model"
    },
    {
      "id": "MiniMax-M2.5",
      "created_at": "2026-02-13T02:00:00Z",
      "display_name": "MiniMax-M2.5",
      "type": "model"
    }
  ],
  "first_id": "MiniMax-M2.7",
  "has_more": false,
  "last_id": "MiniMax-M2.5"
}

Documentation Index

Fetch the complete documentation index at: https://platform.minimaxi.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

授权

Authorization
string
header
必填

Bearer token 认证。可在账户管理 > 接口密钥中获取 API Key

查询参数

limit
integer

每页返回的模型数量

after_id
string

分页游标,返回该 ID 之后的模型

before_id
string

分页游标,返回该 ID 之前的模型

响应

200 - application/json

可用模型列表。

data
object[]

模型对象数组

first_id
string

返回数据中的第一个模型 ID

has_more
boolean

是否还有更多数据

last_id
string

返回数据中的最后一个模型 ID