Skip to content
Logo MoneyGo

Wallets

This endpoint retrieves a list of wallets available to the authenticated user. The response contains details about each wallet, including its unique identifier, balance information, wallet limits, status, wallet number, and associated currency details.

  • Method: GET
  • URL: https://api.money-go.com/api/wallets
  • Headers:
  • Authorization: Bearer YOUR_ACCESS_TOKEN


Terminal window
curl -X GET "https://api.money-go.com/api/wallets" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"status": true,
"data": [
{
"id": 8031,
"amount": 1698,
"amountLimit": 100,
"status": 0,
"number": "R378031",
"currency": {
"id": 3,
"code": "RUB",
"name": " ",
"rate": 91.441111924,
"icon": "rubble.svg",
"precession": 2,
"prefix": "R",
"min_amount": 150,
"max_amount": 900000
},
"active_amount": 1698,
"can_use_for_deposit_api_out": false,
"can_use_for_withdraw_api_out": false
}
]
}
FieldTypeDescription
statusbooleanIndicates whether the request was successful.
dataarrayList of wallet objects.
FieldTypeDescription
idnumberUnique identifier for the wallet.
amountnumberThe current balance amount in the wallet.
amountLimitnumberThe maximum allowed amount (limit) for the wallet.
statusnumberStatus code of the wallet (e.g., active, inactive).
numberstringThe wallet number.
active_amountnumberThe active (usable) balance in the wallet.
can_use_for_deposit_api_outbooleanIndicates if the wallet can be used for API deposits.
can_use_for_withdraw_api_outbooleanIndicates if the wallet can be used for API withdrawals.
FieldTypeDescription
idnumberUnique identifier of the currency.
codestringThe currency code (e.g., “RUB”).
namestringThe name of the currency (if empty, not provided).
ratenumberThe exchange rate for the currency.
iconstringFilename or URL of the currency icon.
precessionnumberNumber of decimal places for the currency.
prefixstringThe currency prefix (e.g., “R”).
min_amountnumberMinimum allowed amount for transactions in this currency.
max_amountnumberMaximum allowed amount for transactions in this currency.