Deposit Assets

Overview

BitGo enables you to deposit both crypto and fiat currencies. Your Go Account is the only wallet type that's multi asset and capable of holding fiat currencies. All other wallets are coin specific.

Depositing coins and tokens into a wallet requires you to get your BitGo wallet address and initiating the deposit from another wallet you control.

Depositing fiat currency into your Go Account requires a wire transfer from your bank account to a BitGo bank account. Your bank may charge a wire-transfer fee. Contact your bank to learn more. If you created your testnet enterprise through the Developer Portal, your Go Account automatically includes test fiat. To request more, contact support@bitgo.com.

Note: Before depositing other assets to your Go Account for trading, ensure the asset is tradable by calling the List Products endpoint. Depositing an unsupported asset may result in the asset becoming unrecoverable.

Prerequisites

Get Started

Steps

  • Deposit Fiat
  • Deposit Crypto

Connect your bank accounts by manually passing your account details to BitGo.

1. Get Deposit Details

Get bank account details for BitGo and a memo ID. All wire transfers must include a memo ID. This ID links your deposit to your account.

  • cURL
  • JavaScript
1 2 3 4 5 6 7 export ACCESS_TOKEN="YOUR_ACCESS_TOKEN" export GO_ACCOUNT_ID="GO_ACCOUNT_ID" curl -X GET \ "https://app.bitgo-test.com/api/v2/tfiatusd/wallet/$GO_ACCOUNT_ID/depositinfo" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $ACCESS_TOKEN"

Step Result

  • JSON
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 { "token": "ofctusd", "toAddress": "d73d8cd5eddf2834-JTHCZLVEDA", "toBankAccount": { "accountNumber": "71667015628", "address1": "1233 Executive St, Ste. 500", "address2": "La Jolla, CA 92037", "address3": "USA", "id": "5d05ae53c7ecc82b3965ac95cee60f88", "name": "Awesome Bank WIRE", "owner": { "name": "BitGo Inc.", "address1": "2443 Ash St", "address2": "Palo Alto, 94306", "address3": "USA" }, "idHash": "d91d8cd5eddf2834", "routingNumber": "914286384", "shortCountryCode": "US", "swiftCode": "AWESUS77", "verificationState": "approved" } }

2. Wire Fiat Currency

Wiring fiat currency from your bank account requires using their app or API. Review their documentation or contact them to learn more.

Note: Ensure to include the memo ID in order to prevent delays in accrediting deposits to your Go Account.

Step Result

The balance of fiat currency in your Go Account updates with the deposited amount. The deposited balance is immediately available for trades.

Next

You can verify successful deposits with the Get Account Balance endpoint.

See Also