AXON
MODEL FAMILY
Enterprise-grade AI models built for coding agents, tool calling, and advanced reasoning. Available via API and integrated directly in Orbital.
Axon Eido 3 Pro
NEW · MOST INTELLIGENTOur flagship model for long-running agents, tool calling, coding and deep research. Frontier reasoning with a 1M-token context and native multimodal input.
axon-eido-3-proAxon Eido 3 Mini
NEW · WORKHORSEThe everyday general-purpose workhorse for day-to-day tasks — chat, extraction, RAG and agents — with the same 1M context, fast and cost-efficient.
axon-eido-3-miniAxon Eido 3 Flash
NEW · FASTFast, low-latency model suitable for low-complexity, day-to-day coding tasks and general use — with a 1M-token context and native multimodal input.
axon-eido-3-flashAxon 2.5 Pro
GEN 2.5High-intelligence model for long-running agent tasks, tool calling, coding and general purpose use.
axon-2-5-proAxon 2.5 Mini
GEN 2.5General purpose daily workhorse model for low-effort day-to-day tasks.
axon-2-5-miniPROMPT
CACHING.
Cached input tokens are automatically discounted at 50% off the standard input price. Caching kicks in automatically for repeated prompt prefixes.
USE WITH
ANY SDK.
Fully OpenAI-compatible. Drop in your existing OpenAI client with just a base URL change.
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-eido-3-pro",
messages=[{"role": "user", "content": "Hello"}],
)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-eido-3-pro",
messages: [{ role: "user", content: "Hello" }],
});