For developers
Build with Payzoplus
REST APIs, webhooks, SDKs in Node, Python and PHP. Go live in days, not weeks.
create-payout.js
import { Payzoplus } from '@payzoplus/sdk';
const pz = new Payzoplus({ apiKey: process.env.PZ_API_KEY });
const payout = await pz.payouts.create({
amount: 250000, // ₹2,500.00 in paise
currency: 'INR',
beneficiary: {
name: 'Acme Pvt Ltd',
accountNumber: 'XXXX1234',
ifsc: 'HDFC0001234',
},
metadata: { invoice: 'INV-2026-019' },
});
console.log(payout.id, payout.status);
// → po_8f3a2c1b → PROCESSEDAPI Reference
Complete REST API docs with examples
Webhooks
Real-time events for every state change
SDKs
Official libraries for Node, Python, PHP
Test mode
Mock environment with realistic data
