Build on the network

Developer API

Plug the NexusPrompt GPU network into your own app. OpenAI-compatible — point any OpenAI SDK at our endpoint, drop in your key, and every request is served by the worker network and billed to your $NEXUS credit.

Sign in with your wallet to create and manage API keys.

Quickstart · OpenAI SDK

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://nexus-production-ad34.up.railway.app/v1",
  apiKey: "nex_live_…",  // your NexusPrompt key
});

const res = await client.chat.completions.create({
  model: "qwen3-32b",
  messages: [{ role: "user", content: "Hello from my app!" }],
});

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

Base URL: https://nexus-production-ad34.up.railway.app/v1 · also works with the Python SDK, curl, LangChain, or anything OpenAI-compatible.