BudPay

Popular Searches:
Payout

Payout Fee

Payout Fee (Bank Transfer Fee)

Sometimes you may like to now your transfer fee before a transfer is initiated.

Endpoint: /payout_fee
Method: POST

Header

Param Type Required? Decription
authorization string Yes Set value to Bearer SECRET_KEY
content-type string Yes Set value to application/json

Body Param

Param Type Required? Decription
currency string Yes Specify the currency of the transfer. Defaults to NGN
amount string Yes Amount to transfer in currency SET value

Sample Post

                            
                                curl https://api.budpay.com/api/v2/payout_fee
                                -H "Authorization: Bearer YOUR_SECRET_KEY"
                                -H "Content-Type: application/json"
                                -d '{
                                    "currency": "NGN",
                                    "amount": "100"
                                }'
                                -X POST
                            
                        

Sample Response

                            
                                {
                                    "success": true,
                                    "message": "Transfer Fee Fetched",
                                    "fee": "10"
                                }