One OpenAI-compatible platform — smart routing, a live GPU marketplace, real-time analytics, a full model directory, and a developer SDK, all behind a single endpoint.
One API
A single OpenAI-compatible endpoint for every model — change the base URL, keep your SDK.
Learn moreSmart Routing
Every request lands on the best model — fastest, cheapest, or smartest, automatically.
Learn moreGPU Marketplace
Rent spare compute or sell yours — a live exchange for GPU power, settled by the second.
Learn moreModel Directory
Browse 37+ models with prices, context windows, and live latency — pick by name or by policy.
Learn moreDeveloper SDK
Typed clients and helpers for Node, Python, and the edge — coming soon.
Realtime Metrics
Watch live operations stream across the network — throughput, queue depth, and health.
Learn moreOne Request.The Best AI Model.
Every request is analyzed in real time and automatically routed to the fastest, smartest, and most cost-efficient AI model available.
Change one base URL, keep your OpenAI SDK. Ship in five languages with the same request shape you already know.
import OpenAI from "openai";
// One base URL change — your OpenAI SDK keeps working
const client = new OpenAI(({
baseURL: "https://api.computeboard.dev/v1",
apiKey: process.env.COMPUTEBOARD_API_KEY,
});
const res = await client.chat.completions.create(({
model: "auto",
messages: [{ role: "user", content: "Explain smart routing in one line." }],
});
console.log(res.choices[0].message.content);{
"id": "cmpl_8x2k…",
"model": "auto → llama-3.3-70b",
"object": "chat.completion",
"choices": [
{ "index": 0,
"message": {
"role": "assistant",
"content": "Routing sends each request to the
fastest, cheapest, smartest model."
},
"finish_reason": "stop"
}
],
"usage": { "total_tokens": 41 }
}