List Models
curl --request GET \
--url https://api.minimax.io/anthropic/v1/models \
--header 'X-Api-Key: <api-key>'{
"data": [
{
"id": "MiniMax-M3",
"created_at": "2026-06-01T00:00:00Z",
"display_name": "MiniMax-M3",
"type": "model"
},
{
"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-M3",
"has_more": false,
"last_id": "MiniMax-M2.5"
}Anthropic Compatible
List Models
Returns a list of all available models compatible with Anthropic API specification.
GET
/
anthropic
/
v1
/
models
List Models
curl --request GET \
--url https://api.minimax.io/anthropic/v1/models \
--header 'X-Api-Key: <api-key>'{
"data": [
{
"id": "MiniMax-M3",
"created_at": "2026-06-01T00:00:00Z",
"display_name": "MiniMax-M3",
"type": "model"
},
{
"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-M3",
"has_more": false,
"last_id": "MiniMax-M2.5"
}Authorizations
API Key Auth
- Security Scheme Type: apiKey
- API Key Header: X-Api-Key, used for account verification, can be viewed in Account Management > API Keys
Query Parameters
Number of items to return per page
Pagination cursor, returns models after this ID
Pagination cursor, returns models before this ID
⌘I