Javascript
const url = 'https://sandboxapi.me-cash.com/v1/wallet'; const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}, body: undefined}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); }
{ "status": "success", "message": "Wallets fetched successfully", "data": [ { "id": "cfd2de64-a896-4405-8736-a1b2c3d4e5f6", "balance": 23094071, "currency": "NGN", "country": "NG" } ] }
This API is used to fetch all wallets for a user.
A list of wallets was successfully retrieved.
"success"
"Wallets fetched successfully"
Show child attributes