RedPill
minimax logo

MiniMax: MiniMax M2.1

GPU TEE
Chat
minimax/minimax-m2.1
Created Jan 9, 2026|197K context|$0.30/M input tokens|$1.20/M output tokens
Intel TDXNVIDIA CC

MiniMax-M2.1 is a lightweight, state-of-the-art large language model optimized for coding, agentic workflows, and modern application development. With only 10 billion activated parameters, it delivers a major jump in real-world capability while maintaining exceptional latency, scalability, and cost efficiency.

Providers for MiniMax: MiniMax M2.1

RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

chutes logo
chutes
Input Price
$0.30
Output Price
$1.20
Total Context
197K

API

RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

fetch("https://api.redpill.ai/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "minimax/minimax-m2.1",
    "messages": [
      {
        "role": "user",
        "content": "What is the meaning of life?"
      }
    ]
  })
})