MiniMax-M2.5 API
Usa MiniMax-M2.5 de la familia MiniMax mediante RunAPI. Pago por llamada, sin suscripción, y las generaciones fallidas no se cobran.
# Base URL
https://runapi.ai
# Endpoints
POST /v1/chat/completions
curl https://runapi.ai/v1/chat/completions \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "MiniMax-M2.5",
"messages": [
{
"role": "user",
"content": "Given this API spec, generate a typed client, write integration tests against a mock server, and iterate until they pass."
}
]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://runapi.ai/v1",
api_key="your-runapi-key"
)
response = client.chat.completions.create(
model="MiniMax-M2.5",
messages=[{"role": "user", "content": "Given this API spec, generate a typed client, write integration tests against a mock server, and iterate until they pass."}]
)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://runapi.ai/v1",
apiKey: "your-runapi-key"
});
const response = await client.chat.completions.create({
model: "MiniMax-M2.5",
messages: [{ role: "user", content: "Given this API spec, generate a typed client, write integration tests against a mock server, and iterate until they pass." }]
});
MiniMax MiniMax-M2.5 está disponible con la misma autenticación RunAPI, flujo de model skill y precios por uso.
- API key unificada
- Setup del model skill
- Referencia de ID de modelo
- Las generaciones fallidas no se cobran
PRECIOS
FICHA TÉCNICA
| ID de modelo | MiniMax-M2.5 |
| Proveedor | MiniMax |
| Modalidad | text |
| Tipo de tarea | synchronous |
| Facturación | 1K tokens |
| Endpoint | /v1/chat/completions |
| Comercial | Sí |
| Estado | Operativo |
Habilidad de modelo — MiniMax-M2.5
Instala la habilidad una vez y luego usa el ID de variante de esta página mientras construyes.
| Endpoint | Protocol |
|---|---|
| /v1/chat/completions | OpenAI compatible |
Cómo usar MiniMax-M2.5
Elige modelo
Selecciona el modelo y la variante que encajan con el flujo de tu app.
Pasa el ID de modelo
Usa este ID de variante en el cuerpo de la petición.
Ejecuta la tarea
Envía la petición y guarda el task ID devuelto.
Recoge la salida
Consulta o recibe el callback cuando termine la tarea.
Comparativa de MiniMax-M2.5
200K context; stronger agentic tool calling and search
230B / 10B active; 200K context; baseline M-series coding model
200K context; stronger agentic tool calling and search
200K context; polyglot programming; 74% SWE-bench Verified
200K context; stronger agentic tool calling and search
M2.5 at ~100 tokens/sec; same weights, higher throughput
Dónde usar esta variante
Chat
Usa LLMs para chat y razonamiento.
Código
Genera y revisa trabajo de implementación.
Automatización
Conecta modelos a tareas backend.
Preguntas frecuentes sobre MiniMax-M2.5
¿Cómo selecciono MiniMax-M2.5?
Pasa el ID de modelo que aparece en el quickstart.
¿El precio es por uso?
Sí. El precio se mide por llamada o unidad.