NS900 • Intelligent Dynamic Suggestions
A clean, fast chat API you can deploy today.
Register in seconds, mint a key, and start sending chat requests. Pay-as-you-go credits. Simple usage-based billing.
Quickstart
const apiKey = "n28sk_live_...";
const res = await fetch("https://model-auth.n28s.com/v1/chat/completions", {
method: "POST",
headers: { "Authorization": `Bearer ${apiKey}`, "Content-Type": "application/json" },
body: JSON.stringify({
model: "N28ns",
messages: [{ role: "user", content: "Hello NS900" }],
max_tokens: 64
})
});
const data = await res.json();Usage is billed in credits (input tokens = 1×, output tokens = 5× by default). Changeable server-side.