Wyre Documentation
  • 📡Wyre Documentation
  • Home
  • 👥Account Onboarding
    • Account Overview
    • Use Cases
    • Pricing
    • API Calls
      • Create Account
      • Get Account
      • Update Account
      • Upload Document
  • đź”—Wallets
    • Use Cases
    • Managing Wallets
      • Creating a Wallet
      • Create Mulitple Wallets
      • Lookup Wallet
      • Edit Wallet
      • List Wallets
      • Delete Wallet
    • Wallet Callbacks
  • đź’łPayments
    • Limits + Coverage
    • Pricing
    • Chargeback + Risk
    • Accepted Payment Methods
    • Global Card Processing
      • Hosted Redirect Operation
      • Browser Dialog (Popup) Operation
      • Understanding Transaction Statuses
        • Wallet Order Errors and Exceptions (Failure Reasons)
      • Additional Widget Functionality and Features
        • Checking Limits
        • Tracking Orders
      • Widget FAQs
      • ⚠️ Wallet Order Reservations | Required! ⚠️
      • API Calls To Help Monitor Transactions
        • Track Widget Order
        • Check A User's Transaction Limits
        • Check Supported Countries
      • Client-Side Encryption đź‘»
  • 🌏Global Payouts
    • Use Cases
    • Limits + Coverage
    • Pricing
    • Supported Countries
    • Country Requirements
    • 🔥Blockchain + Banks
    • 🔥Instant Payouts to Debit Card
  • đź’±Foreign Exchange
    • Exchange Rates
  • Methodologies
  • Payment Methods
    • API Calls
      • Creating a Payment Method- ACH
      • List Payment Methods
      • Create a Payment Method- Wire Transfer
      • Get Payment Method
      • Attach Blockchain to Payment Method
  • Transfers
    • API Calls
      • Creating a Transfer
      • Confirm a Transfer
      • Get Transfer
      • Transfer History
  • Data Subscriptions
    • Subscribe Webhook
    • Get Subscriptions
    • Delete Webhook
  • Resources
  • âś…Going Live
  • Testing Enviornment
  • Understanding API Errors
  • System Resource Name
  • Rate Limiting
  • Authentication & Key Management
    • Authorization Tokens
    • Create an API Key
    • Delete an API Key
    • Authentication Code Examples
  • Wyre Brand Assets
    • 🎨Color Palette And Wyre Logos
  • Links
    • đź§ŞTest Wyre Dashboard
    • 🗣️ Wyre's Discord
Powered by GitBook
On this page
  • Lookup Wallet By Wallet ID
  • Example
  • Lookup Wallet By Name
  • Example

Was this helpful?

  1. Wallets
  2. Managing Wallets

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 by wallet ID:

curl -v -XGET 'https://api.sendwyre.com/v2/wallet/{wallet-id}' \
  -H "X-Api-Key: {api-key}" \
  -H "X-Api-Signature: {signature}" \

Lookup Wallet By Name

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

Path Parameters

Name
Type
Description

name

string

Name 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 by user name:
curl -v -XGET 'https://api.sendwyre.com/v2/wallet' \
  -H "X-Api-Key: {api-key}" \
  -H "X-Api-Signature: {signature}" \
  -d name={your-identifier}

PreviousCreate Mulitple WalletsNextEdit Wallet

Last updated 4 years ago

Was this helpful?

đź”—