cURL
curl --request GET \ --url https://api.flutterwave.com/v3/transfers/rates \ --header 'Authorization: Bearer <token>'
{ "status": "success", "message": "Transfer amount fetched", "data": { "rate": 1219.32, "source": { "currency": "NGN", "amount": 6096600 }, "destination": { "currency": "USD", "amount": 5000 } } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
5000
"USD"
"NGN"
OK
Show child attributes
{ "rate": 1219.32, "source": { "currency": "NGN", "amount": 6096600 }, "destination": { "currency": "USD", "amount": 5000 }}
Was this page helpful?