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
  • Definition
  • Transfer History

Was this helpful?

  1. Transfers
  2. API Calls

Transfer History

Definition

GET https://api.sendwyre.com/v3/transfers/

Transfer History

GET https://api.sendwyre.com/v3/transfers/

{
    "data": [
        {
            "closedAt": 1536857934000,
            "createdAt": 1536857933000,
            "id": "TF-PLPZGNU4EHV",
            "customId": null,
            "source": "account:AC-RCNPH8MWL3E",
            "dest": "account:AC-RCNPH8MWL3E",
            "sourceCurrency": "USD",
            "destCurrency": "CNY",
            "sourceAmount": 1.01,
            "destAmount": 6.83,
            "fees": {
                "USD": 0.01
            },
            "sourceName": "Primary Account",
            "destName": "Primary Account",
            "status": "COMPLETED",
            "message": null,
            "exchangeRate": 6.8349,
            "blockchainTxId": null,
            "destNickname": null
        },
        {
            "closedAt": 1524090636000,
            "createdAt": 1524090632000,
            "id": "TF-JD773YWJ3VB",
            "customId": null,
            "source": "paymentmethod:TestPaymentMethodApi",
            "dest": "account:AC-RCNPH8MWL3E",
            "sourceCurrency": "USD",
            "destCurrency": "USD",
            "sourceAmount": 10000,
            "destAmount": 10000,
            "fees": {},
            "sourceName": "Payment Method TestPaymentMethodApi",
            "destName": "Primary Account",
            "status": "COMPLETED",
            "message": null,
            "exchangeRate": null,
            "blockchainTxId": null
        }
    ],
    "position": 0,
    "recordsTotal": 2,
    "recordsFiltered": 2
}

PreviousGet TransferNextData Subscriptions

Last updated 4 years ago

Was this helpful?