# View Transactions

Source: https://developers.bitgo.com/docs/wallets-view-transactions

## Overview

You can retrieve detailed information about the transactions in your wallets. BitGo enables you to filter rejected transactions or transactions that are pending approval. In addition to viewing basic transaction information, such as amount or timestamps, BitGo also returns details such as:

* Block height
* Fees
* Number of co-signer confirmations

## Prerequisites

[Get Started](/docs/get-started-intro)

## Cookbook

Need just the steps? Expand the cookbook below to get started:

<Cookbook slug="view-transactions" title="View Transactions" />

## Steps

```js SDK
import * as dotenv from "dotenv";
import {EnvironmentName} from "bitgo";
import {BitGoAPI} from "@bitgo/sdk-api";
import {Tltc} from "@bitgo/sdk-coin-ltc";

dotenv.config();

const bitgo = new BitGoAPI({
    env: process.env.ENV as EnvironmentName,
    accessToken: process.env.TESTNET_ACCESS_TOKEN
});

const coin = process.env.ASSET_ID;
bitgo.register(coin, Tltc.createInstance);

const walletId = process.env.WALLET_ID;

async function main() {
    const walletInstance = await bitgo.coin(coin).wallets().get({id: walletId});
    walletInstance.transfers().then(function (transfers) {
        // print transfers
        console.dir(transfers);
    });
}

main().catch((err) => console.error(err));
```
```json API
GET /api/v2/{coin}/wallet/{walletID}/transfer
```

#### Step Result

```json
{
  "coin": "tbtc4",
  "transfers": [
    {
      "id": "5f3a9b2c1d4e8f7a6b0c2d1e3f4a5b6c",
      "coin": "tbtc4",
      "wallet": "5e8d3f1a2b7c4e9d0f1a2b3c",
      "walletType": "hot",
      "enterprise": "5d7c2e1b3a4f6d8e9a0b1c2d",
      "organization": "5d7c2e1b3a4f6d8e9a0b1c2e",
      "txid": "a4b7c2d1e3f5908172a3b4c5d6e7f8091a2b3c4d5e6f708192a3b4c5d6e7f80",
      "txidType": "transactionHash",
      "height": 141632,
      "heightId": "000141632-5f3a9b2c1d4e8f7a6b0c2d1e3f4a5b6c",
      "date": "2026-06-25T16:16:09.000Z",
      "confirmations": 3770,
      "type": "receive",
      "value": 100000,
      "valueString": "100000",
      "intendedValueString": "100000",
      "baseValue": 100000,
      "baseValueString": "100000",
      "baseValueWithoutFees": 100000,
      "baseValueWithoutFeesString": "100000",
      "feeString": "202",
      "payGoFee": 0,
      "payGoFeeString": "0",
      "usd": 59.17,
      "usdRate": 59172.77,
      "medianUsdValue": 61.63,
      "medianUsdRate": 61626.24,
      "state": "confirmed",
      "instant": false,
      "isReward": false,
      "isUnlock": false,
      "isFee": false,
      "senderInformationVerified": false,
      "tags": [
        "5e8d3f1a2b7c4e9d0f1a2b3c",
        "5d7c2e1b3a4f6d8e9a0b1c2d"
      ],
      "history": [
        {
          "date": "2026-06-25T16:16:09.000Z",
          "action": "confirmed",
          "comment": null
        },
        {
          "date": "2026-06-25T15:00:17.783Z",
          "action": "unconfirmed",
          "comment": null
        },
        {
          "date": "2026-06-25T15:00:17.783Z",
          "action": "created",
          "comment": null
        }
      ],
      "comment": null,
      "metadata": [],
      "confirmedTime": "2026-06-25T16:16:09.000Z",
      "unconfirmedTime": "2026-06-25T15:00:17.783Z",
      "createdTime": "2026-06-25T15:00:17.783Z",
      "normalizedTxHash": "b3c4d5e6f7081929a0b1c2d3e4f5067182939a0b1c2d3e4f506718293a0b1c2",
      "label": "",
      "entries": [
        {
          "address": "tb1qgrgcsu2dkvfcte8q52za3htkmwgmj8qh6ktq973zsz3qhlg0ny8q8ajtdd",
          "value": 100000,
          "valueString": "100000",
          "isChange": false,
          "isPayGo": false
        }
      ],
      "outputs": [
        {
          "id": "a4b7c2d1e3f5908172a3b4c5d6e7f8091a2b3c4d5e6f708192a3b4c5d6e7f80:0",
          "address": "tb1qgrgcsu2dkvfcte8q52za3htkmwgmj8qh6ktq973zsz3qhlg0ny8q8ajtdd",
          "value": 100000,
          "valueString": "100000",
          "blockHeight": 141632,
          "date": "2026-06-25T16:16:09.000Z",
          "wallet": "5e8d3f1a2b7c4e9d0f1a2b3c",
          "chain": 20,
          "index": 0,
          "isSegwit": true
        }
      ],
      "inputs": [
        {
          "id": "c1d2e3f4a5b60718293a4b5c6d7e8f901a2b3c4d5e6f708192a3b4c5d6e7f80:1",
          "address": "tb1qzaw94c8znetwpz4asqxszg657k4qcarvn3d9wkee8wtpvlzzu7uqrm6zpm",
          "value": 149721067,
          "valueString": "149721067",
          "isSegwit": true
        }
      ]
    }
  ]
}
```

## See Also

[API Reference: List Transfers](/reference/v2walletlisttransfers)
