Nex-N2-Mini

Nex Agi chatreasoningtool_usevision Long

API ID: nex-agi/nex-n2-mini

Input Price
$0.03
/1M tokens
Output Price
$0.10
/1M tokens
Cached Input
$0.0025
Save 90%

About Nex-N2-Mini

Nex-N2-Mini is a budget-friendly general-purpose model from Nex Agi with ultra-long context (262k), suitable for conversations, content creation, and general AI tasks.

๐Ÿ“Š
Price Ranking
#609 lowest price among 1240 Chat models

Model Specifications

Context Length
262k
Max Output
262k
Release Date
2026-06-24
Capabilities
chat reasoning tool_use vision
Input Modalities
textimage
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Simple Q&A (cheaper models available)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

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

Nex Agi Model Lineup

Compare all models from Nex Agi to find the best fit

Model Input Output Context Capabilities
Nex-N2-Mini Current $0.03 $0.10 262k chat reasoning tool_use vision
Nex-N2-Pro $0.25 $1.00 262k chat reasoning tool_use

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

IBM Granite Granite 4.0 Micro
Input: $0.02
Output: $0.11
Context: 131k
OpenAI Text Embedding 3 Large
Input: $0.13
Output: Free
Context: 8k
Alibaba Qwen Qwen2.5 Coder 7B Instruct
Input: $0.03
Output: $0.09
Context: 33k
Mistral Mistral Small 3
Input: $0.05
Output: $0.08
Context: 33k

๐Ÿš€ Quick Start

Get started with Nex-N2-Mini 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="nex-agi/nex-n2-mini",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)