API Keys

Manage your NexusAI LLM Gateway API keys.

Create New Key

Your Keys

No API keys yet

Create your first key above to get started.

Usage & Rate Limits

Free Tier

10

requests / day

Ideal for prototyping and personal projects.

Pro Tier

1,000

requests / day

For production apps and high-volume integrations.

Quick Start

JavaScript / Node.jsOpenAI Compatible
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.nexusai.bot/v1",
  apiKey: "nxai-YOUR_API_KEY",
});

const response = await client.chat.completions.create({
  model: "nexusai-v1",
  messages: [
    { role: "user", content: "What are the trending tokens?" }
  ],
});

console.log(response.choices[0].message.content);

Replace nxai-YOUR_API_KEY with a key from the table above. Works with any OpenAI-compatible SDK.