The Web3 Information API from Moralis permits builders to get all transactions for an Aptos account in a simple approach. With this interface, you’ll be able to seamlessly get Aptos account transactions by way of a single API name. All you must do is add your API key and specify the deal with you need to question:
import fetch from ‘node-fetch’;
const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘Bearer’: ‘YOUR_API_KEY’
},
};
fetch(‘https://mainnet-aptos-api.moralis.io/accounts/:deal with/transactions’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
By calling the endpoint above, you’ll obtain a JSON response with info such because the transaction hash, the sender deal with, a timestamp, and far more. Here’s a pattern of what the response may appear to be:
{
“hash”: “0x88fbd33f54e1126269769780feb24480428179f552e2313fbe571b72e62a1ca1”,
“sender”: “0x88fbd33f54e1126269769780feb24480428179f552e2313fbe571b72e62a1ca1”,
“sequence_number”: “32425224034”,
“max_gas_amount”: “32425224034”,
“gas_unit_price”: “32425224034”,
“expiration_timestamp_secs”: “32425224034”
},
When working with Moralis, Aptos growth doesn’t must be tougher than that! So, if you wish to construct on Aptos, bear in mind to enroll with Moralis instantly. Creating an account is free and solely takes a few seconds!
Overview
In at this time’s article, we are going to present how simple it’s to get Aptos account transactions when working with Moralis. For instance the accessibility of Moralis, we’re going to create an software in solely three steps, permitting you to constantly get all transactions for an Aptos account:
Clone the App and Set Up MoralisBackend – Get All Transactions for an Aptos AccountFrontend – Deal with the Response
By finishing these steps, you’ll learn to create a NodeJS software to get Aptos account transactions utilizing the Moralis Web3 Information API. If you’re desperate to get into the code, click on right here and soar straight into the tutorial!
If you’re new to the Web3 growth house, you may not be all that aware of Aptos. For that reason, we have now devoted just a few sections towards the top of the article to exploring this community in additional element. As such, in case you are new to Aptos or need to refresh your reminiscences, we advocate beginning within the ”Aptos 101 – What’s Aptos Labs?” part.
Together with industry-leading, enterprise-grade Web3 APIs, Moralis offers extra blockchain growth sources. As an illustration, with Moralis, you’ll be able to simply discover the perfect and most accessible cryptocurrency taps. If you wish to study extra about this, take a look at our information on what a Goerli testnet faucet is, or learn to get testnet APT utilizing an Aptos testnet faucet!
Additionally, earlier than persevering with, bear in mind to register with Moralis immediately. You possibly can create an account totally free; you will want one to comply with alongside on this tutorial!

Tutorial: Learn how to Get Aptos Account Transactions
On this tutorial on how you can get all transactions for an Aptos account, we are going to present you how you can create a simple NextJS app with an Categorical backend server. The app will help you constantly get Aptos account transactions by merely inputting an deal with and hitting a button.
To fetch the related blockchain information, we are going to use the Web3 Information API from Moralis. In doing so, we solely want a single API name to get all the mandatory info; it doesn’t get extra accessible than that!

What’s extra, to make this information as seamless as doable, we can be utilizing an already ready software template to which you solely must make just a few configurations. Together with this, we are going to cowl the important components of the backend and frontend code to present you an concept of how the app works behind the scenes.
Nevertheless, earlier than leaping into step one of this tutorial, we are going to present a short software demo. This will provide you with an concept of what you can be working towards, making it simpler to visualise what the code does!
Software Demo – Get Aptos Account Transactions Repeatedly
Allow us to soar straight into the Aptos account transactions demo and check out the app’s touchdown web page:

The highest of the app options two important parts, an enter area and a submit button:

By inputting an deal with and hitting ”Submit”, the applying calls the Moralis Web3 Information API to fetch the transaction particulars. From there, the knowledge for every transaction is neatly displayed on the app’s consumer interface:

First up, we have now a card with transaction particulars. This consists of the sender deal with, transaction hash, fuel used, and so forth.:
Subsequent, the app additionally options an ”Occasions” drop-down menu. This menu lists all of the occasions related to the actual transaction:
That’s it for this Aptos account transactions software demo! Now that you recognize what you can be working in direction of, allow us to soar straight into step one, the place we are going to present you how you can clone the app and arrange Moralis!
Step 1: Clone the App and Set Up Moralis
To start with, arrange a brand new venture folder and open it in your most popular built-in growth atmosphere (IDE). With a venture folder at your disposal, you’ll be able to go forward and clone the applying utilizing the GitHub repository down under:
Full Aptos Account Transactions App – https://github.com/MoralisWeb3/youtube-tutorials/tree/important/get-aptos-account-transactions
With a replica of the app in your native listing, it is best to now end up with a frontend and a backend folder:

Open the backend folder and create a brand new ”.env” file. This file will host your atmosphere variables, and on this case, you solely want so as to add a Moralis API key. As such, open this file and add the next code:
MORALIS_API_KEY = “replace_me”
As you’ll be able to see, you must exchange replace_me together with your precise key. So, you probably have not already, create your Moralis account now. With an account at hand, you’ll find your key by logging in to the admin panel and navigating to the ”Web3 APIs” tab:
When you add your API key as an atmosphere variable, you at the moment are technically prepared to start out the app. Nevertheless, within the continuing steps, we are going to break down the important components of the frontend and backend code to present you a greater understanding of what occurs behind the scenes!
Step 2: Backend – Get All Transactions for an Aptos Account
For the backend code, we are going to give attention to the ”index.js” file, as that is the place we discover a lot of the software logic. On this file, we begin by importing the mandatory dependencies. This consists of fetch, specific, cors, dotenv, and so forth.:
import fetch from “node-fetch”;
import specific from “specific”;
const app = specific();
const port = 5001;
import cors from “cors”;
import dotenv from “dotenv”;
dotenv.config();
Subsequent, we additionally import the Moralis API key atmosphere variable from the ”.env” file with the next line of code:
const MORALIS_API_KEY = course of.env.MORALIS_API_KEY;
We then use the API key to create an choices object:
const choices = {
technique: “GET”,
headers: {
settle for: “software/json”,
“X-API-Key”: MORALIS_API_KEY,
},
};
From there, we arrange a get endpoint the place we initially fetch the pockets deal with from the frontend and use this as a parameter when calling the Web3 Information API endpoint to get all transactions from the Aptos account. Lastly, we ship the response to the frontend, the place we will extract all of the values and show them to the customers:
app.get(“/getaccounttransactions”, async (req, res) => {
const { question } = req;
attempt {
fetch(
`https://mainnet-aptos-api.moralis.io/accounts/${question.deal with}/transactions`,
choices
)
.then((response) => response.json())
.then((response) => {
return res.standing(200).json(response);
});
} catch (e) {
console.log(`One thing went improper ${e}`);
return res.standing(400).json();
}
});
That’s it for the important components of the backend code; allow us to now transfer on to the frontend!
Step 3: Frontend – Deal with the Response
For the frontend code, we take a more in-depth take a look at the ”important.js” file. On this file, we begin by making the required imports, together with useState, axios, Picture, and so forth.:
import { useState } from “react”;
import axios from “axios”;
import Picture from “subsequent/picture”;
import { Card, Illustration } from “@web3uikit/core”;
import {
Accordion,
AccordionSummary,
AccordionDetails,
Typography,
} from “@mui/materials”;
import ExpandMoreIcon from “@mui/icons-material/ExpandMore”;
import types from “@/types/Dwelling.module.css”;
import MoralisLogo from “../public/belongings/moralis.png”;
import AptosLogo from “../public/belongings/aptos_white.png”;
Subsequent, we transfer on to the Major() perform, the place we begin by including three state variables: walletAddress, outcome, and showResult:
export default perform Major() {
const [walletAddress, setWalletAddress] = useState(“”);
const [result, setResult] = useState([]);
const [showResult, setShowResult] = useState(false);
From there, we add the handleChange() perform that runs when the consumer sorts within the enter area to replace the walletAddress variable:
const handleChange = (e) => {
setWalletAddress(e.goal.worth);
};
Subsequent, we have now the handleSubmit() perform that executes every time the consumer clicks on the ”Submit” button. This perform is answerable for making the request to the backend Categorical server utilizing Axios after which dealing with the response:
const handleSubmit = async () => {
doc.querySelector(“#inputField”).worth = “”;
const response = await axios.get(
`http://localhost:5001/getaccounttransactions`,
{
params: { deal with: walletAddress },
}
);
setResult(response.information);
setShowResult(true);
};
Lastly, the rest of the code takes care of rendering the outcome.
That’s it for this transient code breakdown overlaying the important components!
Congratulations! You’ve gotten now efficiently created an software permitting you to get all transactions for an Aptos account! All that is still from right here is spinning up the Categorical server and launching the applying!
If you need a extra detailed rationalization of every half, please take a look at the clip under. On this Moralis YouTube video, considered one of our gifted software program engineers covers the code in even additional element:
Aptos 101 – What’s Aptos Labs?
Aptos is the brainchild of Aptos Labs, the group behind this blockchain community. The Aptos Labs group consists of a various set of builders, engineers, and strategists led by the 2 co-founders: Mo Shaikh and Avery Ching.

Shaikh and Ching met whereas working collectively on Meta’s Diem venture, they usually began Aptos Labs in 2021. Inside a yr of making the group, Aptos Labs efficiently launched their ”Autumn” mainnet in 2022.
The central objective of Aptos Labs is to supply merchandise and construct purposes on the Aptos community to redefine the consumer expertise in Web3. The Aptos Labs group is ready to develop improved community usability and tooling. By way of this, they want to make the decentralized net prepared for the plenty!
What’s the Aptos Community?
The Aptos mainnet is named ”Aptos Autumn” and was formally launched final yr in October of 2022. Aptos is a layer-1 (L1) proof-of-stake (PoS) community with the objective of changing into essentially the most scalable and quickest blockchain on the planet.

Aptos was designed with scalability, usability, safety, and reliability because the community’s 4 core ideas. Moreover, it’s by way of these ideas that Aptos goals to carry the decentralized net to the plenty.
Aptos options innovation in system safety, sensible contract design, consensus, and decentralization. As well as, the community leverages the Transfer digital machine and Transfer programming language, each optimized for Web3 use instances.
The native foreign money of Aptos is named ”APT”. This token is crucial for the community’s ecosystem as it’s used to pay for transactions on Aptos. APT will also be staked, offering those that stake a proper to take part in transaction validation on the community. As a reward, stakers obtain extra APT for his or her work.
Nonetheless, in order for you a extra detailed breakdown of this community, please take a look at our article answering the ”what’s the Aptos blockchain?” query!
Develop on Aptos with Moralis
Now that you’re extra aware of the Aptos community, you is perhaps asking your self, ”what’s the best method to construct on Aptos?”. The reply to this query is Moralis! Moralis is the premier Web3 infrastructure supplier, enabling you to construct decentralized purposes (dapps) and different Web3 platforms in a heartbeat!
By way of industry-leading, enterprise-grade APIs and real-time blockchain information, Moralis is ready to make Web3 growth as simple as Web2. Furthermore, on this article, you bought to familiarize your self with the Web3 Information API, the most well-liked listed blockchain information supplier. With this device, you’ll be able to seamlessly question information relating to every thing from NFTs to transactions with just a few traces of code.
One other nice instance is the Web3 Streams API. With this programming interface, you’ll be able to simply arrange a Moralis stream to get notified every time one thing of curiosity happens on-chain. This implies you may get immediate, customizable updates when occasions set off primarily based in your filters.
You must also discover Moralis’ cross-chain capabilities. Moralis helps a number of totally different networks, together with Aptos, enabling you to construct chain-agnostic tasks. This implies you don’t restrict your self to at least one community and may simply port tasks throughout networks with minor code configurations. As such, in case you are critical about changing into a Web3 developer, be certain that to enroll with Moralis!
Additionally, in case you are fascinated by Aptos growth, take a look at our Aptos NFT tutorial!
Abstract – Get All Transactions for an Aptos Account
At present’s article confirmed you how you can create an software permitting you to constantly get all transactions for an Aptos account. When utilizing the app, all you must do is enter a pockets deal with and click on a button. Furthermore, due to the accessibility of the Web3 Information API from Moralis, you have been in a position to arrange this software in three steps:
Clone the App and Set Up MoralisBackend – Get All Transactions for an Aptos AccountFrontend – Deal with the Response
So, you probably have adopted alongside this far, you at the moment are aware of how you can get Aptos account transactions. From right here, you’ll be able to hopefully combine related performance into any future Aptos tasks!
Should you discovered this tutorial informative and instructive, you’ll be able to additional study Web3 growth right here on the Moralis weblog. As an illustration, if you wish to construct extra subtle tasks, take a look at our information on Web3 market growth or learn to create a DAO!
Additionally, in case you are critical about changing into a blockchain developer, don’t forget to enroll with Moralis. With an account, you get free entry to enterprise-grade Web3 APIs from Moralis and may leverage the ability of Web3 to the fullest!