Skip to main content
GET
/
anthropic
/
v1
/
models
/
{model_id}
Retrieve Model
curl --request GET \
  --url https://api.minimax.io/anthropic/v1/models/{model_id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

model_id
string
required

Model identifier

Response

200 - application/json

Details of the requested model.

id
string

Model identifier

created_at
string

Model creation time (ISO 8601 format)

display_name
string

Model display name

max_input_tokens
integer

Maximum number of input tokens

max_tokens
integer

Maximum number of output tokens

type
string

Model type, always "model"