Getting started
Quick start
neokens is a credits layer for AI inference. Buy credits once and spend them across 10+ models using a single OpenAI-compatible API.
1. Get your API key
Create an account — redeem a valid code to unlock your $5 welcome gift and your purchased 10× credits. Copy your key from the Dashboard → API Keys tab.
2. Make your first call
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.NEOKENS_KEY,
baseURL: "https://api.quatarly.cloud/v1",
});
const res = await client.chat.completions.create({
model: "gpt-5.3-codex",
messages: [{ role: "user", content: "Say hello." }],
});
console.log(res.choices[0].message.content);3. Switch models instantly
Change the model field to any supported model. One key, one balance, zero extra setup.
| model | provider | your price |
|---|---|---|
| claude-opus-4-7-thinking | Anthropic Claude Opus 4.7 | $1.50/M in |
| claude-sonnet-4-6-thinking | Anthropic Claude Sonnet 4.6 | $0.30/M in |
| gpt-5.1 | OpenAI GPT-5.1 | $0.25/M in |
| gpt-5.3-codex | OpenAI GPT-5.3 Codex | $0.15/M in |
| gemini-3.1-pro | Google Gemini 3.1 Pro | $0.18/M in |
| claude-haiku-4-5-20251001 | Anthropic Claude Haiku 4.5 | $0.08/M in |
| gemini-3-flash | Google Gemini 3 Flash | $0.01/M in |