# Mistral Large 3 (2512) - Core.Today AI API > Mistral Large 3 (2512) served through the OpenRouter aggregator - Mistral's most capable model to date, a sparse mixture-of-experts with 41B active parameters (675B total) released under Apache 2.0, with 256K context and image/file input. Billed at OpenRouter's actual usage cost. - **Provider**: Mistral AI - **Model ID**: mistralai/mistral-large-2512 - **Category**: LLM - **Credits**: 1.9 per 1K tokens (avg, estimate) - **Speed**: Medium - **Quality**: High ## Model Specifications - **Context Window**: 262K tokens - **Max Output**: 33K 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**: 929 credits ($0.62) - **Output Tokens**: 2,787 credits ($1.86) - **Cached Tokens**: 92.9 credits ($0.06) ## Features - 256K-token context window - Vision input (image + file/PDF) - Sparse MoE - 41B active / 675B total parameters, Apache 2.0 open weights - OpenAI-compatible API (chat completions) via /llm/openrouter/v1 - Billed at OpenRouter's actual usage.cost - listed rates are estimates ## Use Cases - Document understanding and multilingual analysis - Function-calling agents and structured extraction - General-purpose chat with a permissive-license model ## 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. "mistralai/mistral-large-2512". - **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": "mistralai/mistral-large-2512", "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 - Not a reasoning model (no reasoning_effort) - it answers directly, so it is a good fit for latency-sensitive chat, and it supports structured_outputs for schema-constrained JSON ## Documentation https://openrouter.ai/mistralai/mistral-large-2512