Retrieve Model
curl --request GET \
--url https://api.minimax.io/v1/models/{model_id} \
--header 'Authorization: Bearer <token>'{
"id": "MiniMax-M3",
"object": "model",
"created": 1780272000,
"owned_by": "minimax"
}OpenAI Compatible
Retrieve Model
Retrieves details for a specific model, compatible with OpenAI API specification.
GET
/
v1
/
models
/
{model_id}
Retrieve Model
curl --request GET \
--url https://api.minimax.io/v1/models/{model_id} \
--header 'Authorization: Bearer <token>'{
"id": "MiniMax-M3",
"object": "model",
"created": 1780272000,
"owned_by": "minimax"
}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
Path Parameters
Model identifier
⌘I