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 payout
GET/payouts/:id
Fetch payout status
POST/beneficiaries
Add a beneficiary
GET/beneficiaries
List beneficiaries
GET/wallet
Get wallet balance and ledger
GET/transactions
Search transactions
POST/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"
  }'