Quick Start

Get from sign-up to your first multi-provider API call in under 5 minutes.

1

Create your Sandbox

~30 seconds

Sign up and a fully provisioned sandbox is created automatically — complete with demo providers, workflows, policies, and an API key.

Create Sandbox
2

Install the SDK

~30 seconds
npm install @oberon/sdk
# or
pip install oberon-sdk
3

Make your first call

~60 seconds
import { 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

Explore more