Integrate FlowPayz payouts into your application in minutes using our powerful REST APIs.
FlowPayz provides simple and secure APIs to automate payouts for businesses. You can send money to bank accounts or UPI IDs instantly using our payout infrastructure.
All API requests must include your API Key in the request headers.
Header Example Authorization: Bearer YOUR_API_KEY Content-Type: application/json
Use this API to send payouts to a bank account or UPI ID.
POST https://api.flowpayz.com/v1/payout
{
"amount": "500",
"method": "upi",
"upi_id": "user@upi",
"reference_id": "ORD12345",
"name": "Rahul Sharma"
}
{
"status": "success",
"payout_id": "FPX239102",
"amount": "500",
"method": "upi",
"message": "Payout processed successfully"
}
FlowPayz sends webhook notifications to your server whenever a payout status changes.
POST /webhook
{
"event": "payout.success",
"payout_id": "FPX239102",
"amount": "500",
"status": "success"
}
Automate your business payouts using our developer friendly APIs.
Get API Keys