# MiniMax M3 - Core.Today AI API > MiniMax's M3 multimodal foundation model served through OpenRouter - text, image and video input, 1M-token context with up to 512K output tokens, suited for long-horizon agentic work and coding. Billed at OpenRouter's actual usage cost. - **Provider**: MiniMax - **Model ID**: minimax/minimax-m3 - **Category**: LLM - **Credits**: 1.4 per 1K tokens (avg, estimate) - **Speed**: Medium - **Quality**: High ## Model Specifications - **Context Window**: 1.0M tokens - **Max Output**: 512K tokens - **Training Cutoff**: Not published - **Supported Formats**: text, json, markdown - **Compatible SDK**: OpenAI ### Capabilities - Vision (image input) - Function Calling - Streaming - JSON Mode - System Prompt ### Token Pricing (per 1M tokens) - **Input Tokens**: 557.4 credits ($0.37) - **Output Tokens**: 2,229.6 credits ($1.49) - **Cached Tokens**: 111.48 credits ($0.07) ## Features - 1M-token context window with up to 512K output tokens - Multimodal input (text, image, video) - OpenAI-compatible API (chat completions) via /llm/openrouter/v1 - Reasoning and tool calling for agentic workflows - Billed at OpenRouter's actual usage.cost - listed rates are estimates ## Use Cases - Long-horizon agentic workflows - Coding assistants and repository-scale analysis - Multimodal understanding of images and video ## API Endpoint Base URL: https://api.core.today Endpoint: POST /llm/openrouter/v1/chat/completions ## Authentication Header: Authorization: Bearer YOUR_API_KEY Note: LLM endpoints use OpenAI-compatible format with Authorization Bearer token. ## Input Parameters ### Required - **model**: string - Model ID in vendor/model form, e.g. "minimax/minimax-m3". - **messages**: array - Chat messages in OpenAI format (system/user/assistant roles). ### Optional - **temperature**: number (default: 0.7) - Sampling temperature (0-2). - **max_tokens**: integer (default: 2048) - Maximum completion tokens. - **stream**: boolean (default: false) - Stream the response as server-sent events. ## Examples ### Chat completion OpenAI-compatible chat completion request via OpenRouter ```json { "model": "minimax/minimax-m3", "messages": [ { "role": "user", "content": "Summarize the attached report in 5 bullets." } ], "max_tokens": 1024 } ``` ## Response Format ```json { "id": "chatcmpl-abc123", "object": "chat.completion", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "Response text here" }, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 100, "completion_tokens": 50, "total_tokens": 150 } } ``` ## Tips - Works with the OpenAI SDK - set base_url to https://ai.api.core.today/llm/openrouter/v1 - Charged at OpenRouter's usage.cost x 1,858 credits/USD - the listed rates are estimates and may lag OpenRouter price changes - The 1M context and 512K max output make it suitable for whole-repository or long-video inputs - set max_tokens explicitly for long generations ## Documentation https://openrouter.ai/minimax/minimax-m3