Quick Start
Get from sign-up to your first multi-provider API call in under 5 minutes.
1
Create your Sandbox
~30 secondsSign up and a fully provisioned sandbox is created automatically — complete with demo providers, workflows, policies, and an API key.
Create Sandbox2
Install the SDK
~30 secondsnpm install @oberon/sdk # or pip install oberon-sdk
3
Make your first call
~60 secondsimport { OberonClient } from "@oberon/sdk";
const oberon = new OberonClient({
apiKey: "YOUR_API_KEY",
baseUrl: "https://gateway.stage.oberon.services",
});
// Multi-provider credit check
const result = await oberon.orchestrate("multi-provider-scoring", {
userId: "demo-user-001",
country: "MX",
});
console.log(result);
// {
// executionId: "...",
// status: "COMPLETED",
// data: { finalScore: 725, sources: 2 },
// totalDurationMs: 340,
// }4