Get Wallet History

GET /wallets/{walletId}/history?paginationToken={token}

Retrieves a list of historical on chain activities for the specified wallet.

Required Permissions

NameConditions

Wallets:Read

Always Required

Parameters

Path parameters

Path parameterDescription

walletId

Unique identifier of the Wallet. ex. wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx

Query parameters

Query string parameterRequired/OptionalDescriptionType

limit

Optional

Maximum number of items to return. Default to 50.

Number

paginationToken

Optional

Opaque token used to retrieve the next page. Returned as nextPageToken from the previous request.

String

Response

{
  "items": [
    {
      "index": "134",
      "fee": "1542993669053672",
      "txHash": "0x8e88793607610a83798eb5ec6dde861f3e459c7e4a22e78b0d2e675b86d0d1e7",
      "blockNumber": 19036906,
      "timestamp": "2024-01-18T23:03:59.000Z",
      "contract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
      "walletId": "wa-40f4f-51gpm-xxxxxxxxxxxxxxxx",
      "network": "Ethereum",
      "value": "1000000",
      "kind": "Erc20Transfer",
      "from": "0xea09cf8a006493566f8a8fd3d0b32ebff5939d6a",
      "direction": "Out",
      "to": "0xc42754e6f79f15082613b2b4ebead83dcf8116b6",
      "metadata": {
          "asset": {
              "symbol": "USDC",
              "decimals": 6,
              "verified": true
          },
          "fee": {
              "symbol": "ETH",
              "decimals": 18,
              "verified": true
          }
      }
    },
    ...
  ],
  "nextPageToken": "WszQXoENUIYyoBQjJm4DE6QhCk2sB7WAh9kykUMaTQcD25SToKbuXkgf3td8ZYb2LrtopPLo35u407gwwA1Sug=="
}

Last updated