Referrals
The referral (partner) program: read your referral data, apply to become a partner, and request payouts. Authentication required.
GET
/api/v1/referrals/me AuthYour referral status, balance, code and stats.
Response
{ "success": true, "is_partner": true, "code": "jane", "balance": 4200, "referrals": 8 }GET
/api/v1/referrals/settings AuthProgram settings (commission %, minimum payout).
Response
{ "success": true, "commission": 20, "min_withdrawal": 50 }POST
/api/v1/referrals/apply AuthApply to join the partner program.
Response
{ "success": true }POST
/api/v1/referrals/withdraw AuthRequest a payout to a card. Subject to the minimum payout and your balance.
Request body
{ "amount": 100, "card_number": "4242…" }Response
{ "success": true }