🚀 Fast Integration
Get started in minutes with our TypeScript SDK or REST API. Full type safety and comprehensive error handling.
Process hundreds of driver payouts in minutes with our REST API
Get an API Key
Contact engineering@ovn.llc to request API accessInstall the SDK
npm install @ovn/paystream-clientMake Your First Payout
import { PayStreamClient } from '@ovn/paystream-client';
const client = new PayStreamClient({
apiKey: process.env.PAYSTREAM_API_KEY,
apiUrl: 'https://api.ovnpays.com'
});
const payout = await client.payouts.create({
recipientId: 'drv_123',
amount: 50000, // $500.00 in cents
description: 'Load #12345'
});https://api.ovnpays.com/api/v1All requests require an API key in the header:
Authorization: Bearer your_api_key| Resource | Description |
|---|---|
/drivers | Manage driver accounts |
/payouts | Create and manage payouts |
/batches | Batch payout operations |
/balance | Check wallet balance |
/webhooks | Webhook configuration |