v2

latestOpenAPI 3.0.12026-07-26334612609.5 KB
SDK

Get transactions for a wallet address

Fetches the list of transactions for a given wallet address within an environment.

get/sdk/{environmentId}/chains/{chainName}/transactions/{address}

Path parameters

environmentIdstring required
Example:95b11417-f18f-457f-8804-68e361f9164f

ID of the environment

chainName'ETH' | 'EVM' | 'FLOW' | 'SOL' | 'ALGO' | 'STARK' | 'COSMOS' | 'BTC' | 'ECLIPSE' | 'SUI' | 'SPARK' | 'TRON' | 'APTOS' | 'TON' | 'STELLAR' required
addressstring required
Example:An example name

Public key (address) of the wallet

Query parameters

networkIdnumber required
limitinteger
offsetstring

Response

Wallet transactions fetched successfully

nextOffsetstring

Offset to the next page of transactions

Example response

{
  "transactions": [
    {
      "transactionHash": "An example name",
      "blockHash": "An example name",
      "fromAddress": "An example name",
      "toAddress": "An example name",
      "assetTransfers": [
        {
          "tokenAddress": "An example name",
          "fromAddress": "An example name",
          "toAddress": "An example name"
        }
      ],
      "networkId": 1
    }
  ]
}