API Documentation
Integrate our robust payout engine directly into your software with our well-documented REST API.
Authentication
Every request must include your API Key in the `Authorization` header.
Authorization: Bearer YOUR_API_KEY
POST
/v1/payouts
Create a Dynamic Payout
Initialize an instant payout to any supported gateway.
Request Body
{
"amount": 250.00,
"currency": "USD",
"gateway": "paypal",
"recipient": "user@example.com",
"memo": "Payment for service"
}
Example Response
{
"id": "payout_928374",
"status": "pending",
"estimated_arrival": "instantly"
}
