Developers
Developer Portal
REST APIs for payouts, beneficiaries, wallet, and webhooks. Sandbox available on request.
Authentication
All requests must be signed with your API Key and Secret. Include headers X-BizPay-Key and X-BizPay-Signature (HMAC-SHA256 of the raw body).
Base URL
https://api.bizpay.in/v1
Endpoints
POST/payouts
Create a new payoutGET/payouts/:id
Fetch payout statusPOST/beneficiaries
Add a beneficiaryGET/beneficiaries
List beneficiariesGET/wallet
Get wallet balance and ledgerGET/transactions
Search transactionsPOST/webhooks/test
Test webhook delivery (sandbox)Example: Create Payout
curl -X POST https://api.bizpay.in/v1/payouts \
-H "X-BizPay-Key: pk_live_xxx" \
-H "X-BizPay-Signature: <hmac-sha256>" \
-H "Content-Type: application/json" \
-d '{
"beneficiary_id": "ben_abc123",
"amount": 5000,
"remark": "Vendor payout — Oct invoice"
}'