Built for platforms
Clean APIs
RESTful APIs with comprehensive documentation and SDKs for popular languages.
Real-time webhooks
Get instant notifications for payments, disputes, and account updates.
Secure by default
OAuth 2.0 authentication, API key management, and request signing.
Platform management
Manage thousands of connected accounts with bulk operations and reporting.
Simple integration
Get started with just a few lines of code. Our APIs are designed to be intuitive and developer-friendly.
// Create a connected account
const account = await cobalz.accounts.create({
email: 'merchant@example.com',
country: 'US',
});
// Generate onboarding link
const link = await cobalz.accountLinks.create({
account: account.id,
type: 'account_onboarding',
});
// Redirect merchant to onboarding
res.redirect(link.url);