Developers

The Identity API for Engineers

Build with Toni using OAuth-style authorization, cryptographic webhooks, and secure partner-scoped identifiers.

Quick Start

authorize.js
// 1. Redirect user to Toni Authorization URL
const url = new URL("https://api.vbtoni.com/oauth/authorize");

url.searchParams.append("client_id", "part_12345");
url.searchParams.append("redirect_uri", "https://your-app.com/callback");
url.searchParams.append("scope", "identity professional_license");
url.searchParams.append("state", "secure_random_state_string");

window.location.href = url.toString();
toni