Aether OS, the CLI companion, and the developer API all run on the same Microbix Neural Gateway — so what you build in one, you can ship from any of them.
A full workspace: split-screen sign-in, animated welcome, session safety controls, and a chat surface tuned for long, high-context work.
Pair a terminal session with a 6-digit pin, then run and refactor code with shell filters that block destructive or credential-reading commands.
A REST API with chat, model, and usage endpoints, authenticated with a single key, so you can wire Microbix intelligence into anything you ship.
One key, one endpoint. The Neural Gateway handles routing across Microbix Fast, Pro, and Ultra-Reasoning clusters for you, with a five-tier failover matrix behind every request.
// call the Microbix Neural Gateway const res = await fetch("https://api.microbix.in/v1/chat", { method: "POST", headers: { "Content-Type": "application/json", "x-aether-key": "YOUR_KEY" }, body: JSON.stringify({ model: "microbix-pro", messages: [{ role: "user", content: "Hello, Aether" }] }) }); const data = await res.json(); console.log(data);
AES-256 encryption at rest and TLS 1.2+ in transit on every conversation, key, and stored memory.
Built-in guards against prompt injection, credential harvesting, and attempts to override safety behavior.
Free, Pro, and Ultra tiers run on mX credits — you always know what a request costs before you send it.