Onboard in minutes. Create your account, get an API key, install an SDK, and send your first request — everything you need to start building with MiniMax.
Five steps stand between you and a working MiniMax integration. Follow the sequence below.
Register in under two minutes with just an email address and password.
Visit the MiniMax sign-up page from any modern browser. Enter your email address and choose a strong password. The system checks password strength in real time and flags common patterns. Submit the form and check your inbox for a verification email — it arrives within seconds. Click the confirmation link, complete your profile with your name and optional organization, and you land on the Platform Hub. No credit card. No approval queue. Your account activates immediately.
API keys authenticate every request to MiniMax. Create one from the Platform Hub in a few clicks.
In the Platform Hub, find the API Keys section in the left sidebar. Click Create Key, give it a descriptive name like "production-server" or "dev-laptop," and the system generates a key immediately. Copy it now — MiniMax displays the key only once at creation time. Store it in your environment variables, a secrets manager, or your application's secure configuration store. Create separate keys for development, staging, and production. You can rotate or revoke keys from the same dashboard without downtime by creating a new key before retiring the old one.
Pick your language. One package manager command installs the MiniMax client library with full API coverage.
Python developers run pip install minimax-sdk. JavaScript developers use npm install @minimax/sdk. Go developers execute go get github.com/minimax-ai/sdk-go. Each SDK installation completes in seconds. The packages include synchronous and asynchronous clients, typed request and response objects, automatic retry logic for transient failures, and streaming support for real-time token delivery. All SDKs are open source with README files that contain quick-start examples covering the most common API calls.
Send a prompt and receive a model-generated response — the moment your integration comes alive.
Set your API key as the environment variable MINIMAX_API_KEY. Initialize the client with your key. Call the text generation endpoint with a simple prompt like "Explain machine learning in two sentences." The response arrives within seconds. Streaming mode sends tokens as they generate, creating a typewriter effect in your terminal or application UI. Non-streaming mode returns the complete response in a single JSON payload. Either way, you have confirmed end-to-end connectivity between your application and the MiniMax platform.
The Platform Hub shows usage metrics, billing status, model options, and alert settings — your command center for MiniMax.
Return to the Platform Hub to familiarize yourself with the dashboard layout. The usage section displays token consumption with daily and monthly breakdowns. The billing tab shows your current plan, next invoice date, and any applied credits. The models section lists available variants with descriptions and benchmarks. Configure spending alerts to notify you when usage approaches your budget threshold. The monitoring tab surfaces API latency percentiles, error rates, and request volume trends over configurable time windows.
Complete these five items to go from zero to a working MiniMax integration. First, create your account with email verification — no credit card needed for the free tier. Second, generate an API key and store it in your environment variables before leaving the page. Third, install the SDK for your language of choice via standard package manager. Fourth, make your first API call using the quick-start example from the SDK README. Fifth, explore the Platform Hub dashboard for usage tracking, billing setup, and model exploration. Each step includes inline documentation and copy-paste code snippets to minimize friction.
| Step | Action | Time | Prerequisites |
|---|---|---|---|
| 1 | Create Account | ~2 min | Email address |
| 2 | Generate API Key | < 1 min | Verified account |
| 3 | Install SDK | ~1 min | Python/Node/Go installed |
| 4 | Make First Call | < 1 min | SDK + API key set |
| 5 | Explore Dashboard | Variable | First call complete |
"I went from reading the landing page to a working chat integration in under ten minutes. The SDK README had exactly the code I needed, the API key flow was frictionless, and the streaming response arrived on the first try. I've onboarded three other services this quarter and none were this fast."
— Elena R. Moreau, Product Manager, Skybridge AI, Philadelphia
You can make your first MiniMax API call within five minutes of creating an account. Email verification is instant, API key generation takes seconds, and the SDK installation process completes in under a minute with standard package managers. The onboarding guide walks you through each step with copy-paste code examples for immediate productivity.
No, MiniMax offers a free tier with 1,000 tokens per month that requires no credit card. You can explore all base models, test API endpoints, and build prototypes without entering payment information. A credit card is only needed when upgrading to a paid plan for higher token limits and additional features.
MiniMax provides official SDKs for Python, JavaScript/Node.js, and Go. Python is recommended for quick prototyping due to its concise syntax and broad library ecosystem. JavaScript works well for web applications and browser integrations. Go suits high-concurrency services. The REST API works with any language capable of making HTTP requests.
After your first successful API call, explore the Platform Hub dashboard to review usage statistics, experiment with different model variants, configure streaming responses for real-time output, set up billing alerts at usage thresholds, and browse the documentation for advanced features like video generation and chat completions.
Example code is available in the official MiniMax GitHub repositories, the developer documentation section, and within each SDK package's examples directory. Common patterns include chat completion, streaming text generation, video synthesis requests, and multi-turn conversation management. The GitHub resources page links to all active example repositories and starter templates.