List Models
curl --request GET \
--url https://api.minimax.io/v1/models \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "MiniMax-M3",
"object": "model",
"created": 1780272000,
"owned_by": "minimax"
},
{
"id": "MiniMax-M2.7",
"object": "model",
"created": 1773799200,
"owned_by": "minimax"
},
{
"id": "MiniMax-M2.5",
"object": "model",
"created": 1770948000,
"owned_by": "minimax"
}
]
}OpenAI Compatible
List Models
Returns a list of all available models compatible with OpenAI API specification.
GET
/
v1
/
models
List Models
curl --request GET \
--url https://api.minimax.io/v1/models \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "MiniMax-M3",
"object": "model",
"created": 1780272000,
"owned_by": "minimax"
},
{
"id": "MiniMax-M2.7",
"object": "model",
"created": 1773799200,
"owned_by": "minimax"
},
{
"id": "MiniMax-M2.5",
"object": "model",
"created": 1770948000,
"owned_by": "minimax"
}
]
}Documentation Index
Fetch the complete documentation index at: https://platform.minimax.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
HTTP: Bearer Auth
- Security Scheme Type: http
- HTTP Authorization Scheme: Bearer API_key, used for account verification, can be viewed in Account Management > API Keys
⌘I