{"id":15986,"date":"2022-01-13T21:35:00","date_gmt":"2022-01-13T21:35:00","guid":{"rendered":"https:\/\/hederav2stg.wpenginepowered.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/"},"modified":"2025-12-09T16:41:43","modified_gmt":"2025-12-09T16:41:43","slug":"how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics","status":"publish","type":"post","link":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/","title":{"rendered":"How to Look Up Transaction History on Hedera Using Mirror Nodes &#8211; Back to the Basics"},"content":{"rendered":"<div class=\"body-text BodyCopy mb-40 style-1\">\n<p>In this article you will learn about mirror nodes and how to use them for your applications. <\/p>\n<h4 class=\"color-ultraviolet\">What are Mirror Nodes?<\/h4>\n<p>With the high number of transactions that the Hedera Network is able to process every second, keeping this transaction history in all the network nodes for all time would eventually turn those nodes into massive data centers. Mirror nodes help address that issue by separating the consensus operations and the record keeping. <\/p>\n<p>Mirror nodes receive information from the consensus nodes (mainnet or testnet), but the former do not contribute to consensus themselves &#8211; that\u2019s the job of the consensus nodes only. However, the trust from the consensus nodes is transferred to the mirror nodes using signatures, chain of hashes, and state proofs. This all means that mirror nodes provide an efficient way to perform activities like queries, analytics, audit support, and monitoring without having a major impact on the performance of consensus nodes.<\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-1.jpg\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\">How to Use Mirror Nodes?<br \/><\/h4>\n<p>You have a few options available when it comes to using mirror nodes. You can choose from Hedera-operated, <a href=\"https:\/\/docs.hedera.com\/hedera\/core-concepts\/mirror-nodes\" target=\"_blank\">community-operated<\/a>, or running your own mirror node.<\/p>\n<p>One consideration when choosing an option is that the Hedera-managed mirror node is throttled at 100 requests per second (rps) for mainnet. This non-production mainnet mirror node is meant to help developers build applications without having to run their own mirror node. Once your application is ready for production, consider using one of the community-operated mirror node services, like <a href=\"https:\/\/hashscan.io\/#\/mainnet\/dashboard\" target=\"_blank\">HashScan<\/a> and\u00a0<a href=\"https:\/\/app.dragonglass.me\/hedera\/home\" target=\"_blank\">DragonGlass<\/a>.<\/p>\n<p>For the Hedera-managed mirror node, you can access network transaction records and account balances via REST and gRPC APIs. <\/p>\n<h4 class=\"color-ultraviolet\"><strong>Hedera Mirror Node REST API<\/strong><\/h4>\n<p>The Hedera mirror node REST API enables you to query transactions and account information from mirror nodes managed by Hedera. You can use this REST API for all Hedera environments (mainnet, testnet, and previewnet). <\/p>\n<p>With the REST API, you use the base URL for the appropriate Hedera network and customize the endpoints to get results that match your search criteria. You can look up transaction history and filter by account, balance, transaction, topic, token, NFT, smart contract, and more. <\/p>\n<p>These are the base URLs for each Hedera network:<\/p>\n<ul>\n<li><a href=\"https:\/\/mainnet-public.mirrornode.hedera.com\/\" target=\"_blank\">https:\/\/mainnet-public.mirrornode.hedera.com\/<\/a><\/li>\n<\/ul>\n<ul>\n<li><a href=\"https:\/\/testnet.mirrornode.hedera.com\/\" target=\"_blank\">https:\/\/testnet.mirrornode.hedera.com\/<\/a><\/li>\n<\/ul>\n<ul>\n<li><a href=\"https:\/\/previewnet.mirrornode.hedera.com\/\" target=\"_blank\">https:\/\/previewnet.mirrornode.hedera.com\/<\/a><\/li>\n<\/ul>\n<p>And in this page, you can see all the options for customizing the endpoints to filter your query results:<\/p>\n<ul>\n<li><a href=\"https:\/\/docs.hedera.com\/hedera\/sdks-and-apis\/rest-api\" target=\"_blank\">https:\/\/docs.hedera.com\/hedera\/sdks-and-apis\/rest-api<\/a><\/li>\n<\/ul>\n<p>Now let\u2019s do a few queries to help you get started. <\/p>\n<h4 class=\"color-ultraviolet\"><strong>Submit Queries on a Web Browser<\/strong><\/h4>\n<p>For the first query, we want to get a JSON schema of the testnet accounts that have a balance greater than 10,000 tinybar in descending order. After using the testnet base URL and customizing the endpoints, our query looks like:<em><u><br \/><\/u><\/em><\/p>\n<p><em><u><a href=\"https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/accounts?account.balance=gt:10000&amp;order=desc\">https:\/\/testnet.mirrornode.hed&#8230;<\/a><\/u><br \/><\/em><\/p>\n<p>You can just copy paste that text in your web browser and see the results for yourself! There are a lot of results, so notice that the last item in the page is:<\/p>\n<p><em><u>&#8220;links&#8221;:{&#8220;next&#8221;:&#8221;\/api\/v1\/accounts?account.balance=gt:10000\u2134=desc&amp;account.id=lt:0.0.26568308&#8243;}<\/u><\/em><\/p>\n<p>Adding that last item to the base URL takes you to the next page of results.<\/p>\n<p>Here are a few more query examples that you can enter in your web browser for:<\/p>\n<ul>\n<li>Balances of <strong>all accounts<\/strong> with ID <strong>less than 0.0.10<\/strong><br \/>\nin <strong>descending<\/strong> ID order:<\/p>\n<ul>\n<li><a href=\"https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/balances?account.id=lt:0.0.10&amp;order=desc\" target=\"_blank\">https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/balances?account.id=lt:0.0.10\u2134=desc<\/a><\/li>\n<\/ul>\n<\/li>\n<li>Balances of <strong>5 accounts<\/strong> with <strong>ID less than 0.0.10<\/strong> in <strong>ascending<\/strong> ID order:\n<ul>\n<li><a href=\"https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/balances?account.id=lt:0.0.10&amp;order=asc&amp;limit=5\" target=\"_blank\">https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/balances?account.id=lt:0.0.10\u2134=asc&amp;limit=5<\/a><\/li>\n<\/ul>\n<\/li>\n<li>Tokens of <strong>non-fungible type<\/strong> with <strong>token ID within a specified range<\/strong> in <strong>descending<\/strong> ID order:\n<ul>\n<li><a href=\"https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/tokens?type=NON_FUNGIBLE_UNIQUE&amp;token.id=gte:0.0.26568401&amp;token.id=lte:0.0.26568403&amp;order=desc\" target=\"_blank\">https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/tokens?type=NON_FUNGIBLE_UNIQUE&amp;token.id=gte:0.0.26568401&amp;token.id=lte:0.0.26568403\u2134=desc<\/a><\/li>\n<\/ul>\n<\/li>\n<li>Information about <strong>NFT with serial 1<\/strong> of <strong>token ID 0.0.19159052<\/strong>:\n<ul>\n<li><a href=\"https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/tokens\/0.0.19159052\/nfts\/1\" target=\"_blank\">https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/tokens\/0.0.19159052\/nfts\/1<\/a><\/li>\n<\/ul>\n<\/li>\n<li>A list of all smart contract entities on the network:\n<ul>\n<li><a href=\"https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/contracts\" target=\"_blank\">https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/contracts<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>Keep in mind that in release v0.44 of the Hedera mirror node, the maximum number of rows the REST API can return was changed from 500 to 100. In addition, the default number of rows the REST API returns if the limit parameter is unspecified was changed from 500 to 25. However, if a request is sent requesting more than 100 it won&#8217;t fail. Instead, it will use the smaller of the two values.<\/p>\n<h4 class=\"color-ultraviolet\"><strong>Submit Queries in Your Code<\/strong><\/h4>\n<p>You can also use the REST API in your code to consume transaction history information in your application. There are many ways to do this, but we\u2019ll simply use the <em>fetch <\/em>API in JavaScript to wrap some of the  REST commands we learned above. <\/p>\n<\/div>\n<div class=\"hedera-code-window\" style=\"background-image:url('https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg');padding:24px;border-radius:8px;margin:24px 0;\">\n<p>  <!-- Hidden image so WP All Import downloads this background image into Media Library --><br \/>\n  <img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/CodeSnippetBackground-scaled.jpg\" alt=\"code window background\" style=\"display:none;\" \/><\/p>\n<div class=\"code-window-header\">\n<div class=\"code-window-title\"><\/div>\n<div class=\"code-window-body\"><\/div>\n<\/p><\/div>\n<pre><code class=\"language-javascript\">console.clear();\nimport fetch from \"node-fetch\";\n\nasync function main() {\n    let firstLink =\n        \"https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/tokens?type=NON_FUNGIBLE_UNIQUE&token.id=gte:0.0.26568401&token.id=lte:0.0.26568403&order=desc\";\n    let results1 = await mirrorQuery(firstLink);\n    console.log(`- One of the tokens has ID: ${results1.tokens[0].token_id} n`);\n\n    let secondLink = \"https:\/\/testnet.mirrornode.hedera.com\/api\/v1\/balances?account.id=lt:0.0.10&order=asc&limit=5\";\n    let results2 = await mirrorQuery(secondLink);\n    console.table(results2.balances);\n    console.log(\n        `n - There are ${results2.balances[0].balance * 1e-8} test hbar in account ${results2.balances[0].account} n`\n    );\n\n    async function mirrorQuery(url) {\n        let response = await fetch(url);\n        let info = await response.json();\n        return info;\n    }\n}\nmain();\n<\/code><\/pre>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p>Based on the console.log commands, the code above outputs:<\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-2.jpg\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p>In our code, using <em>fetch<\/em> returns a data object with the information from the query that we can use in our application. Here\u2019s what that data object looks like from the debug console for the variable <em>results1<\/em>.<\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-3.jpg\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p>It\u2019s worth mentioning that the Hedera SDKs provide a way to get transaction confirmations from the consensus nodes. However, confirmations from those nodes are only available for a few minutes after a transaction is submitted to the network. In addition, some queries from consensus nodes may have an associated fee, whereas mirror node queries are free. If you want to get information about a transaction or entity from hours, days, weeks, months, or years ago, then querying the mirror nodes is the way to go.<\/p>\n<h4 class=\"color-ultraviolet\"><strong>Mirror Node gRPC API<\/strong><\/h4>\n<p>When you configure the Hedera client for a network (mainnet, testnet, previewnet) through the SDKs, the connection with the corresponding mirror node is handled automatically. This automatic connection to the mirror node, however, is only valid for subscribing to Hedera Consensus Service (HCS) topics and querying those messages. Other history like transactions, account-specific activity, and similar can be fetched using the REST API.<\/p>\n<p>You can customize the mirror node network you connect to, which is useful if you\u2019re connecting to a community-operated mirror node or running your own. If you would like to modify the mirror client, <a href=\"https:\/\/docs.hedera.com\/hedera\/sdks-and-apis\/hedera-consensus-service-api-1\" target=\"_blank\">follow the documentation<\/a>.<\/p>\n<h4 class=\"color-ultraviolet\">Running Your Own Hedera Mirror Node<\/h4>\n<p>You have multiple options when it comes to running your own mirror node: <\/p>\n<ul>\n<li>One-click deploy on GCP of the open-source mirror node software<\/li>\n<\/ul>\n<ul>\n<li>Getting network data from buckets in GCP and AWS<\/li>\n<\/ul>\n<ul>\n<li>Hedera-ETL (extract, transform, load) scripts for use with Google BigQuery<\/li>\n<\/ul>\n<p>For more details on these options, be sure give <a href=\"https:\/\/hedera.com\/blog\/mirror-node-software-beta-and-tools-now-available-including-one-click-deploy-in-google-cloud-platform-marketplace\" target=\"_blank\">this blog post<\/a> and <a href=\"https:\/\/docs.hedera.com\/hedera\/core-concepts\/mirror-nodes\" target=\"_blank\">the documentation instructions<\/a> a good read!<\/p>\n<\/p>\n<h4 class=\"color-ultraviolet\">Continue Learning about Mirror Nodes<\/h4>\n<ul>\n<li><a href=\"https:\/\/hedera.com\/learning\/what-is-the-hedera-mirror-network\" target=\"_blank\">https:\/\/hedera.com\/learning\/what-is-the-hedera-mirror-network<\/a><\/li>\n<\/ul>\n<ul>\n<li><a href=\"https:\/\/docs.hedera.com\/hedera\/core-concepts\/mirror-nodes\" target=\"_blank\">https:\/\/docs.hedera.com\/hedera\/core-concepts\/mirror-nodes<\/a><\/li>\n<\/ul>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>With the high number of transactions that the Hedera Network is able to process every second, keeping this transaction history in all the network nodes for all time would eventually turn those nodes into massive data centers. Mirror nodes help address that issue by separating the consensus operations and the record keeping. In this article you will learn about mirror nodes and how to use them for your applications.<\/p>\n","protected":false},"author":10,"featured_media":17412,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[1],"tags":[45],"ppma_author":[43],"class_list":["post-15986","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-technical"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Look Up Transaction History on Hedera Using Mirror Nodes - Back to the Basics | Hedera<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Look Up Transaction History on Hedera Using Mirror Nodes - Back to the Basics | Hedera\" \/>\n<meta property=\"og:description\" content=\"With the high number of transactions that the Hedera Network is able to process every second, keeping this transaction history in all the network nodes for all time would eventually turn those nodes into massive data centers. Mirror nodes help address that issue by separating the consensus operations and the record keeping. In this article you will learn about mirror nodes and how to use them for your applications.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/\" \/>\n<meta property=\"og:site_name\" content=\"Hedera\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-13T21:35:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-09T16:41:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Hedera Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/\"},\"author\":{\"name\":\"Hedera Team\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4\"},\"headline\":\"How to Look Up Transaction History on Hedera Using Mirror Nodes &#8211; Back to the Basics\",\"datePublished\":\"2022-01-13T21:35:00+00:00\",\"dateModified\":\"2025-12-09T16:41:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/\"},\"wordCount\":1117,\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg\",\"keywords\":[\"technical\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/\",\"url\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/\",\"name\":\"How to Look Up Transaction History on Hedera Using Mirror Nodes - Back to the Basics | Hedera\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg\",\"datePublished\":\"2022-01-13T21:35:00+00:00\",\"dateModified\":\"2025-12-09T16:41:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#primaryimage\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg\",\"width\":2560,\"height\":1440},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hedera.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Look Up Transaction History on Hedera Using Mirror Nodes &#8211; Back to the Basics\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hedera.com\/#website\",\"url\":\"https:\/\/hedera.com\/\",\"name\":\"Hedera\",\"description\":\"Hello future\",\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hedera.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hedera.com\/#organization\",\"name\":\"Hedera\",\"url\":\"https:\/\/hedera.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png\",\"width\":500,\"height\":375,\"caption\":\"Hedera\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Look Up Transaction History on Hedera Using Mirror Nodes - Back to the Basics | Hedera","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/","og_locale":"en_US","og_type":"article","og_title":"How to Look Up Transaction History on Hedera Using Mirror Nodes - Back to the Basics | Hedera","og_description":"With the high number of transactions that the Hedera Network is able to process every second, keeping this transaction history in all the network nodes for all time would eventually turn those nodes into massive data centers. Mirror nodes help address that issue by separating the consensus operations and the record keeping. In this article you will learn about mirror nodes and how to use them for your applications.","og_url":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/","og_site_name":"Hedera","article_published_time":"2022-01-13T21:35:00+00:00","article_modified_time":"2025-12-09T16:41:43+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg","type":"image\/jpeg"}],"author":"Hedera Team","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#article","isPartOf":{"@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/"},"author":{"name":"Hedera Team","@id":"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4"},"headline":"How to Look Up Transaction History on Hedera Using Mirror Nodes &#8211; Back to the Basics","datePublished":"2022-01-13T21:35:00+00:00","dateModified":"2025-12-09T16:41:43+00:00","mainEntityOfPage":{"@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/"},"wordCount":1117,"publisher":{"@id":"https:\/\/hedera.com\/#organization"},"image":{"@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg","keywords":["technical"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/","url":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/","name":"How to Look Up Transaction History on Hedera Using Mirror Nodes - Back to the Basics | Hedera","isPartOf":{"@id":"https:\/\/hedera.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#primaryimage"},"image":{"@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg","datePublished":"2022-01-13T21:35:00+00:00","dateModified":"2025-12-09T16:41:43+00:00","breadcrumb":{"@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#primaryimage","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-scaled.jpg","width":2560,"height":1440},{"@type":"BreadcrumbList","@id":"https:\/\/hedera.com\/blog\/how-to-look-up-transaction-history-on-hedera-using-mirror-nodes-back-to-the-basics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hedera.com\/"},{"@type":"ListItem","position":2,"name":"How to Look Up Transaction History on Hedera Using Mirror Nodes &#8211; Back to the Basics"}]},{"@type":"WebSite","@id":"https:\/\/hedera.com\/#website","url":"https:\/\/hedera.com\/","name":"Hedera","description":"Hello future","publisher":{"@id":"https:\/\/hedera.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hedera.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hedera.com\/#organization","name":"Hedera","url":"https:\/\/hedera.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/#\/schema\/logo\/image\/","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/09\/hedera_logo.png","width":500,"height":375,"caption":"Hedera"},"image":{"@id":"https:\/\/hedera.com\/#\/schema\/logo\/image\/"}}]}},"featured_image_src":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-600x400.jpg","featured_image_src_square":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/2021-MirrorNet-Image-0-Thumbnail-600x600.jpg","author_info":{"display_name":"Hedera Team","author_link":"https:\/\/hedera.com\/blog\/author\/hedera-team\/"},"authors":[{"term_id":43,"user_id":10,"is_guest":0,"slug":"hedera-team","display_name":"Hedera Team","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/7ed01931dc9498365746508c4ca49ed0507ef65e04e0b82ffe88c50ef9242b1d?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":""}],"_links":{"self":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15986","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/comments?post=15986"}],"version-history":[{"count":0,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15986\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media\/17412"}],"wp:attachment":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media?parent=15986"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/categories?post=15986"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/tags?post=15986"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/ppma_author?post=15986"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}