Skip to main content
GET
/
anthropic
/
v1
/
models
List Models
curl --request GET \
  --url https://api.minimax.io/anthropic/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "MiniMax-M2.7",
      "created_at": "2025-06-01T00:00:00Z",
      "display_name": "MiniMax M2.7",
      "max_input_tokens": 1000000,
      "max_tokens": 65536,
      "type": "model"
    },
    {
      "id": "MiniMax-M2.5",
      "created_at": "2025-06-01T00:00:00Z",
      "display_name": "MiniMax M2.5",
      "max_input_tokens": 1000000,
      "max_tokens": 65536,
      "type": "model"
    }
  ],
  "first_id": "MiniMax-M2.7",
  "has_more": false,
  "last_id": "MiniMax-M2.5"
}

Authorizations

Authorization
string
header
required

Bearer token authentication. API key can be obtained from Account Management > API Keys

Query Parameters

limit
integer

Number of items to return per page

after_id
string

Pagination cursor, returns models after this ID

before_id
string

Pagination cursor, returns models before this ID

Response

200 - application/json

A list of available models.

data
object[]

Array of model objects

first_id
string

First model ID in the returned data

has_more
boolean

Whether there is more data

last_id
string

Last model ID in the returned data