FlowPayz API Documentation

Integrate FlowPayz payouts into your application in minutes using our powerful REST APIs.

Introduction

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.

Authentication

All API requests must include your API Key in the request headers.

Header Example

Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Create Payout

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"
}

API Response

{
  "status": "success",
  "payout_id": "FPX239102",
  "amount": "500",
  "method": "upi",
  "message": "Payout processed successfully"
}

Webhook Notifications

FlowPayz sends webhook notifications to your server whenever a payout status changes.

POST /webhook

{
 "event": "payout.success",
 "payout_id": "FPX239102",
 "amount": "500",
 "status": "success"
}

Start Integrating FlowPayz API

Automate your business payouts using our developer friendly APIs.

Get API Keys