Skip to content

OVN Pay APIAutomated driver payout platform for logistics companies

Process hundreds of driver payouts in minutes with our REST API

Quick Start ​

  1. Get an API Key

    Contact engineering@ovn.llc to request API access
  2. Install the SDK

    bash
    npm install @ovn/paystream-client
  3. Make Your First Payout

    typescript
    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",
    });

API Endpoints ​

Base URL ​

https://api.ovnpays.com/api/v1

Authentication ​

All requests require an API key in the header:

Authorization: Bearer your_api_key

Core Resources ​

ResourceDescription
/driversManage driver accounts
/payoutsCreate and manage payouts
/batchesBatch payout operations
/balanceCheck wallet balance
/webhooksWebhook configuration

Documentation ​