Mercury 2

Inception chatreasoningtool_use

API ID: inception/mercury-2-20260304

Input Price
$0.25
/1M tokens
Output Price
$0.75
/1M tokens
Cached Input
$0.03
Save 90%

About Mercury 2

Mercury is Inception's language model, delivering strong performance on general AI tasks. The model excels at conversation, content generation, and analysis. Mercury variants include coding-specialized versions for development tasks. The series demonstrates Inception's advancement in language model development. For developers seeking capable AI from Inception, Mercury offers reliable performance.

💰
Price Ranking
#821 lowest price among 1240 Chat models

Model Specifications

Context Length
128k
Max Output
50k
Release Date
2026-03-04
Capabilities
chat reasoning tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)
  • Simple Q&A (cheaper models available)

💰 Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.34
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$10.50
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$14.63
/month
500 analyses/day, ~2k tokens each

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Gryphe MythoMax 13B
Input: $0.40
Output: $0.60
Context: 8k
OpenAI GPT-3.5 Turbo (batch)
Input: $0.25
Output: $0.75
Context: 16k
Other Mercury
Input: $0.25
Output: $0.75
Context: 128k
Other Mercury Coder
Input: $0.25
Output: $0.75
Context: 128k

🚀 Quick Start

Get started with Mercury 2 API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="inception/mercury-2-20260304",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)