Complete guide โ from getting your API key to tracking costs, choosing providers, and understanding pricing.
From zero to your first AI response in under 5 minutes.
Go to the RemoteAI playground โ click Get API Key โ fill name + email โ your key is issued instantly.
// Register for a free key via API
const res = await fetch("https://pulsedataengineer.com/functions/remoteAIGateway", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
action: "register",
name: "Your Name",
email: "you@example.com",
plan: "free", // free | starter | pro
})
});
const { apiKey, plan, monthlyLimit } = await res.json();
console.log(apiKey); // "rai_xxxxxxxxxxxxxxxxxxxx"rai_xxxxxxxxxxxxxxxxxxxx โ save it, it won't be shown again.Install via npm (JavaScript/Node.js) or call the REST API directly (Python, cURL, any language).
npm install remoteai
requests in Python or fetch in any language.Choose your language โ same result, different syntax.
import RemoteAI from "remoteai";
const ai = new RemoteAI({
apiKey: "rai_your_key_here", // โ key YOU got from remoteai.io
});
// Simple ask โ RemoteAI picks best provider automatically
const res = await ai.ask("Explain supervised learning in 2 sentences.");
console.log(res.text);
// โ "Supervised learning is a type of machine learning where..."
console.log(res.meta);
// โ { provider: "groq", model: "llama3-70b", cost: "$0.0002", latency: "118ms" }Get your free API key and make your first call in under 5 minutes.
A PulseDataEngineer ยท TechPulse initiative