Algorand - Get all account transactions

Modified on Wed, 08 Feb 2023 at 11:46 AM

Getting all Account transactions in Algorand is possible via an RPC node request.


Example request

curl --location --request GET 'https://api.tatum.io/v3/blockchain/node/ALGO/v2/accounts/MLD3LCNGOK2SXAVNUYMW3WVG5LBN4Z5HFARB3VLMZCENFW############/transactions?nodeType=INDEXER' \
--header 'x-api-key: ##API_KEY'
//Response:
{
    "current-round": 26834617,
    "next-token": "0DOZAQAAAAAMAAAA",
    "transactions": [
        {
            "asset-transfer-transaction": {
                "amount": 0,
                "asset-id": 27165954,
                "close-amount": 0,
                "receiver": "MLD3LCNGOK2SXAVNUYMW3WVG5LBN4Z5HFARB3VLMZCENFW############"
            },
            "close-rewards": 0,
            "closing-amount": 0,
            "confirmed-round": 26834571,
            "fee": 1000,
            "first-valid": 26834569,
...


How to make RPC Node calls with Tatum is available at the following link.


Good to Know

  • Algorand RPC node method /v2/accounts/{account-id}/transactions looks up account transactions, returning newest to oldest.
  • This request requires a redirect to the INDEXER node via ?nodeType=INDEXER
  • Algorand RPC node documentation is available at the following link.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article