inference-providers

Nex N2 Mini

by nex-agi · family nex

Facts

Release date2026-06-24
Retired date
Knowledge cutoff
Context (max)262,144
Max output
Modalitiestext, image → text
Aliasesnex-n2-mini
Open weightsyes (nex-agi/Nex-N2-mini)
DescriptionCompact multimodal sibling of Nex N2 Pro; 262K context, text+image input, $0.025/$0.10 per Mtok on OpenRouter.

Unknown values are shown as —.

Offerings

ProviderWire IDVariantEndpointProtocolStatusPrice (USD / Mtok)Reasoning
OpenRouternex-agi/nex-n2-miniminichat-completionsopenai-chatretired0.03 / 0.10effort · default on · returns reasoning_content · round-trips reasoning_content

Reasoning controls

OpenRouter· nex-agi/nex-n2-mini· chat-completions effort

reasoning.effort nonelowmedium●highxhighmax

effort · default on · returns reasoning_content · round-trips reasoning_content

Example requests

OpenRouter · openai-chat · nex-agi/nex-n2-mini

curl 'https://openrouter.ai/api/v1/chat/completions' \
  -H 'Authorization: Bearer <YOUR_API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
  "model": "nex-agi/nex-n2-mini",
  "messages": [
    {
      "role": "user",
      "content": "Tell me about the weather."
    }
  ],
  "reasoning": {
    "effort": "medium"
  }
}'
Python (requests)
import requests

resp = requests.post(
    "https://openrouter.ai/api/v1/chat/completions",
    headers={
      "Authorization": "Bearer <YOUR_API_KEY>",
      "Content-Type": "application/json"
    },
    json={
      "model": "nex-agi/nex-n2-mini",
      "messages": [
        {
          "role": "user",
          "content": "Tell me about the weather."
        }
      ],
      "reasoning": {
        "effort": "medium"
      }
    },
)
print(resp.json())
TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer <YOUR_API_KEY>",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    "model": "nex-agi/nex-n2-mini",
    "messages": [
      {
        "role": "user",
        "content": "Tell me about the weather."
      }
    ],
    "reasoning": {
      "effort": "medium"
    }
  }),
})
console.log(await resp.json())
  • ⚠ Responses include reasoning_content artifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).