Lookup Wallet

This endpoint allows you to look up the balance of a child wallet by ID or name.

Lookup Wallet By Wallet ID

GET https://api.sendwyre.com/v2/wallet/{walletId}

Path Parameters

Name
Type
Description

walletId

string

ID of the Wallet

{
   “owner”: “account:[account-ID]“,
   “callbackUrl”: null,
   “depositAddresses”: {
       “BTC”: “1FNAkNVt3gXdS3PZ1tDvetbcafKPsJPQTG”
   },
   “totalBalances”: {
       “USD”: 4.96
   },
   “availableBalances”: {
       “USD”: 4.96
   },
   “verificationData”: null,
   “balances”: {
       “USD”: 4.96
   },
   “srn”: “wallet:[Wallet-ID]“,
   “createdAt”: 1497861843000,
   “notes”: “test1”,
   “name”: “richard”,
   “id”: “[Wallet-ID]”
}

Example

Lookup Wallet By Name

GET https://api.sendwyre.com/v2/wallet/

Path Parameters

Name
Type
Description

name

string

Name of the wallet

Example

Last updated

Was this helpful?