MATTERAI / MODELS

AXON
MODEL FAMILY

Enterprise-grade AI models built for coding agents, tool calling, and advanced reasoning. Available via API and integrated directly in Orbital.

OPENAI-COMPATIBLE API
https://api2.matterai.so/v1INFERENCE DOCS
ALL MODELS

Axon Lumen 4

NEW · FLAGSHIP

Our latest flagship model for frontier coding, agentic and visual workflows. State-of-the-art results across DeepSWE, FrontiersSWE, Terminal Bench 2.1 and BrowseComp — with a 1M-token context and native multimodal input.

axon-lumen-4
Context
1M
tokens
Max Output
128k
tokens
Input Price
$5.00
/ 1M tokens
Output Price
$25.00
/ 1M tokens
Tool CallingSkillsMCPStructured OutputsWeb SearchText + Image InText Out

Axon Eido 3 Pro

MOST INTELLIGENT

Our flagship model for long-running agents, tool calling, coding and deep research. Frontier reasoning with a 1M-token context and native multimodal input.

Context
1M
Output
128k
Input
$3.00
Output
$9.00
Tool CallingSkillsMCPStructured OutputsWeb Search
Text + Image InText Out
axon-eido-3-pro

Axon Eido 3 Mini

WORKHORSE

The everyday general-purpose workhorse for day-to-day tasks — chat, extraction, RAG and agents — with the same 1M context, fast and cost-efficient.

Context
1M
Output
128K
Input
$1.00
Output
$3.00
Tool CallingSkillsMCPStructured OutputsWeb Search
Text + Image InText Out
axon-eido-3-mini

Axon Eido 3 Flash

FAST

Fast, low-latency model suitable for low-complexity, day-to-day coding tasks and general use — with a 1M-token context and native multimodal input.

Context
1M
Output
128k
Input
$0.30
Output
$0.90
Tool CallingSkillsMCPStructured OutputsWeb Search
Text + Image InText Out
axon-eido-3-flash
CACHING

PROMPT
CACHING.

Cached input tokens are automatically discounted at 75% off the standard input price. Caching kicks in automatically for repeated prompt prefixes.

Axon Lumen 4$1.250 / 1M cached
Axon Eido 3 Pro$0.750 / 1M cached
Axon Eido 3 Mini$0.250 / 1M cached
Axon Eido 3 Flash$0.075 / 1M cached
INTEGRATION

USE WITH
ANY SDK.

Fully OpenAI-compatible. Drop in your existing OpenAI client with just a base URL change.

PYTHON
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_MATTERAI_KEY",
    base_url="https://api.matterai.so/v1",
)

response = client.chat.completions.create(
    model="axon-lumen-4",
    messages=[{"role": "user", "content": "Hello"}],
)
TYPESCRIPT
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: "YOUR_MATTERAI_KEY",
  baseURL: "https://api.matterai.so/v1",
});

const response = await client.chat.completions.create({
  model: "axon-lumen-4",
  messages: [{ role: "user", content: "Hello" }],
});

START BUILDING
WITH AXON.