Skip to content
Logo MoneyGo

Transfer Wallet exists

This endpoint allows you to search for a wallet belonging to another user by its wallet code. It is useful when you need to retrieve details about a specific wallet.

  • Method: GET
  • URL: https://api.money-go.com/api/wallets/search/wallet_number
  • Headers:
  • Authorization: Bearer YOUR_ACCESS_TOKEN
  • Parameters:
  • wallet_number The number of the other user’s wallet. Example: U41


Terminal window
curl -X GET "https://api.money-go.com/api/wallets/search/U41" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
"status": true,
"data": {
"id": 41,
"number": "U41",
"currency": {
"id": 1,
"code": "USD",
"name": "United States dollar",
"rate": 0.013525,
"prefix": "U"
}
}
}
FieldTypeDescription
statusbooleanIndicates whether the request was successful.
dataobjectContains the wallet details for the searched wallet.
FieldTypeDescription
idnumberUnique identifier for the wallet.
numberstringThe wallet number (e.g., “U41”).
FieldTypeDescription
idnumberUnique identifier of the currency.
codestringCurrency code (e.g., “USD”).
namestringName of the currency.
ratenumberExchange rate for the currency.
prefixstringCurrency prefix (e.g., “U”).