Transfer Funds
You can transfer funds from your Peerwallet balance to another Peerwallet user easily with this API. The receiver must be registered on Peerwallet.
End Point
"https://calls.peerwallet.com
/transfer-funds"
Send your keys via headers
VALUE
api-public-key
REQUIRED
YES
DESCRIPTION
This is your Public API Keys which can be found here.https://peerwallet.
com/map/api-keys
Below are the POST values to send and their explanations on each field.
VALUE
user
REQUIRED
YES
DESCRIPTION
This is the user’s peerwallet email address or the account number
amount
YES
This is the amount you want to transfer. The default currency it will use is your account’s primary currency. Enter amount without comma.
Post Fields
[
"api-public-key",
"user" ,
"amount"
]
Return Values Success Sample
{
"status": 200,
"transfer_status":"success" ,
"sender_currency":"EUR" ,
"receiver_currency": "GBP" ,
"amount": 45 ,
"receiver_amount": 38.8 ,
"fees": 0 ,
"tax": 0 ,
"exchange_rate": 1.03 ,
"new_balance": 3402 ,
"date": "14 th of March, 2022" ,
"transaction_id": "EIO09SOLA" ,
"receipt_url": "https://peerwallet.com/map/receipt?token=3t3tbfwywbfuvfvy89gg8vuvub
8vh8ervu880735hbHVUGy08gOUVvvu" ,
"note":"User details fetched"
}
Return Values Error Sample
{
"status": 500,
"note":"Funds transfer failed"
}