Choose a model for the work you need to doMe
← Model directory

MiniMax-M2.5-highspeed

MiniMax· MiniMax-M2.5-highspeed

Official APIInternationalVersion 1

Coding, tool use, and long-context tasks through MiniMax international APIs.

Writing & chatCoding
Add to comparison
Changing the channel loads its own configuration
API BASE URLhttps://api.minimax.io/v1
Actual API model IDMiniMax-M2.5-highspeed
Request method / pathPOST /chat/completions
AuthenticationAuthorization: Bearer $API_KEY
Edit request parameters

Edit JSON within the verified parameter ranges. Copy and export stop if types, required fields, or enum values are invalid.

# 先在当前终端设置环境变量:API_KEY
# 下面只创建请求文件,不执行文本中的任何命令。
cat > request.json <<'MODEL_ATLAS_REQUEST'
{
  "model": "MiniMax-M2.5-highspeed",
  "messages": [
    {
      "role": "user",
      "content": "请用中文介绍你可以帮助我完成哪些任务。"
    }
  ]
}
MODEL_ATLAS_REQUEST

# 替换 request.json 内的用户占位符后再运行请求。
curl --fail-with-body --request POST "https://api.minimax.io/v1/chat/completions" \
  --header "Content-Type: application/json" \
  --header "Authorization: Bearer ${API_KEY}" \
  --data-binary @request.json
Template v1.0.0 · Catalog version 1