Retrieve Transactions

GraphQL endpoint to retrieve the transactions corresponding to an existing wallet address

  • Query:

    query CustomUserTransactions($primaryWalletAddress: String) {
      customUserTransactions(primaryWalletAddress: $primaryWalletAddress) {
        externalId
        transactionList {
          id
          transactionType
          amount
          amountType
          currencyValue
          currencyType
          timestamp
          details
          transactionHash
          chainId
        }
      }
    }
    
  • Variables:

    • **primaryWalletAddress** (required)

  • Example json payload:

{
   "primaryWalletAddress": "14324"
}

Last updated