Retrieve a wallet

Get information on a specific wallet (e.g., the available balance).

To use this endpoint from the browser, you’ll need to specify the /accounts/{accountID}/wallets.read scope when generating a token.
GET
/accounts/{accountID}/wallets/{walletID}
200 404 429
Wallets associated with the given account
A Moov wallet to store funds for transfers.
{
  "availableBalance": {
    "currency": "USD",
    "value": 1204,
    "valueDecimal": "12.987654321"
  },
  "walletID": "ec7e1848-dc80-4ab0-8827-dd7fc0737b43"
}
Empty response for unauthorized or any other returned http status code.
Request was refused due to rate limiting.

X-Retry-In

string <duration>
How long (in milliseconds) to wait until able to retry the request.

Path parameters

accountID

string <uuid> required
ID of the account.

walletID

string <uuid> required
ID of the wallet

Response

application/json
A Moov wallet to store funds for transfers.

availableBalance

object
Available balance of the wallet.
A representation of money containing an integer value and its currency.
right_key Show child attributes

currency

string <=3 characters Pattern
A 3-letter ISO 4217 currency code.

value

integer<int64>
Quantity in the smallest unit of the specified currency. In USD this is cents, so $12.04 is 1204 and $0.99 would be 99.

valueDecimal

string
Same as value, but a decimal-formatted numerical string that represents up to 9 decimal place precision.
A decimal-formatted numerical string that represents up to 9 decimal place precision.

walletID

string<uuid> <=36 characters Pattern
UUID v4