{"id":15768,"date":"2023-02-07T20:00:00","date_gmt":"2023-02-07T20:00:00","guid":{"rendered":"https:\/\/hederav2stg.wpenginepowered.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/"},"modified":"2025-12-08T18:46:12","modified_gmt":"2025-12-08T18:46:12","slug":"querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series","status":"publish","type":"post","link":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/","title":{"rendered":"Querying Hedera Transaction History on Arkhia &#8211; Arkhitect Awareness Series"},"content":{"rendered":"<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/image2_2023-01-23-230414_bvbq.png\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<p>In this tutorial-styled blog post, you will learn how to leverage Arkhia to efficiently call transaction data from the Hedera network for use on your dApp.  Using Arkhia as your middleware solution ensures critical data is consistently available.  Let\u2019s get started.<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>But First &#8211; What are Mirror Nodes?<\/strong><\/h4>\n<p>Mirror nodes on Hedera operate separately from nodes actively participating in reaching consensus.  Since Hedera can process an incredibly high number of transactions, having dedicated nodes keeping the full transaction history of the network relieves this burden from the consensus nodes, allowing them to achieve consensus as efficiently as possible (<a href=\"https:\/\/hedera.com\/\">3-5 seconds with finality<\/a>).\u00a0<\/p>\n<p>With the consensus nodes focusing on consensus, this leaves mirror nodes to handle queries, analytics, audit support, and monitoring. Arkhia functions as a reliable, available solution ensuring your dApp has uninterrupted access to all of these mirror node functions.<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>Getting Started with Arkhia<\/strong><\/h4>\n<p>Not already registered on Arkhia? Visit the <a href=\"https:\/\/docs.arkhia.io\/docs\/getting-started\" target=\"_blank\">\u201cGetting Started\u201d<\/a> section and follow the various steps to sign up and confirm your account, then get an explanation about the functionalities of your personalised dashboard.<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>Accessing Mirror Node Data Through Arkhia<\/strong><\/h4>\n<p>Arkhia utilises the <a href=\"https:\/\/docs.hedera.com\/hedera\/sdks-and-apis\/rest-api\">Hedera Mirror Node REST API<\/a> to provide users with the data of their various queries on both mainnet and testnet.<\/p>\n<p>When using the REST API, you use a standard set of URLs with variations specific to your query. When querying transaction history, you can filter by account, balance, transaction type, topic, token, NFT, smart contract, and more.<\/p>\n<p>It is important to note that you need an API key to query the Hedera network using Arkhia, but not to worry as this can be done easily and for free. The process is outlined in the <a href=\"https:\/\/docs.arkhia.io\/docs\/getting-started\">Getting Started<\/a> section of the Arkhia documentation.  Once generated, you can see example code snippets involving the REST API <a href=\"https:\/\/docs.arkhia.io\/docs\/tutorials\/Code-Samples\/rest-api-code-examples\">here<\/a>.<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>How to make a query on Arkhia<\/strong><\/h4>\n<p>Paid Version<\/p>\n<ul>\n<li>Mainnet: <a href=\"https:\/\/hedera.mainnet.arkhia.io\/api\/v1\">https:\/\/hedera.mainnet.arkhia.io\/api\/v1<\/a><\/li>\n<li>Testnet: <a href=\"https:\/\/hedera.testnet.arkhia.io\/api\/v1\">https:\/\/hedera.testnet.arkhia.io\/api\/v1<\/a><\/li>\n<\/ul>\n<p>It is important to note that the above URLs and examples below are for paid tiers only, if you are using the free version, please use the URLs just below this.<\/p>\n<p>Free Version<\/p>\n<ul>\n<li>Mainnet <a href=\"https:\/\/pool.hedera.mainnet.arkhia.io\/api\/v1\">https:\/\/pool.hedera.mainnet.arkhia.io\/api\/v1<\/a><\/li>\n<li>Testnet:<a href=\"https:\/\/pool.hedera.testnet.arkhia.io\/api\/v1\"> https:\/\/pool.hedera.testnet.arkhia.io\/api\/v1<\/a><\/li>\n<\/ul>\n<p>Specific queries can be found <a href=\"https:\/\/docs.hedera.com\/hedera\/sdks-and-apis\/rest-api\">here<\/a>. Simply replace the URL with Arkhia URLs for seamless integration.<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>Example Queries on Arkhia<\/strong><\/h4>\n<\/p>\n<h4 class=\"color-ultraviolet\"><strong>Pulling Accounts with Specific Balances<\/strong><\/h4>\n<p>Users who wish to locate all accounts on Hedera with a specific balance, such as all balances with 5000 tinybar or less in ascending order,  would use this URL.<\/p>\n<p><a href=\"https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/accounts?account.balance=gt:5000&amp;order=asc\">https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/accounts?account.balance=gt:5000\u2134=asc<\/a><\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/first-image.png\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>Pulling Accounts with Specific Hedera IDs<\/strong><\/h4>\n<p>For querying Hedera accounts within a specific range, say you\u2019re looking for early Hedera accounts with an ID less than 0.0.10 in descending ID order, you can use this URL.<\/p>\n<p><a href=\"https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/balances?account.id=lt:0.0.10&amp;order=desc\">https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/balances?account.id=lt:0.0.10\u2134=desc<\/a><\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/second-image-specific-ids.png\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>Pulling a Specific Number of Accounts with Specific IDs<\/strong><\/h4>\n<p>Now, let\u2019s see how we can pull a specific number of accounts within a specific, desired balance.  In this example, let\u2019s say we want to pull the first 5 accounts with an ID after 0.0.10 in ascending order. The URL would be:<\/p>\n<p><a href=\"https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/balances?account.id=mt:0.0.10&amp;order=asc&amp;limit=5\">https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/balances?account.id=mt:0.0.10\u2134=asc&amp;limit=5<\/a><\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/third-image-specifc-amount-by-ids.png\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>Pulling Specific NFTs<\/strong><\/h4>\n<p>Querying NFTs on Hedera is just as easy as any other.  For example, you can query the first NFT in a specific collection under the Hedera ID 0.0.1232177.<\/p>\n<p><a href=\"https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/tokens\/0.0.1005886\/nfts\/1\"><\/a><a href=\"https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/tokens\/0.0.1005886\/nfts\/1\">https:\/\/hedera.mainnet.arkhia.io\/api\/v1\/tokens\/0.0.1232177\/nfts\/1<\/a><\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/image-4-specific-nfts.png\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>Pulling Specific Smart Contracts<\/strong><\/h4>\n<p>For our example, let&#8217;s query specific smart contracts on Hedera using Arkhia.\u00a0<\/p>\n<p><a href=\"https:\/\/mainnet-public.mirrornode.hedera.com\/api\/v1\/contracts\/0.0.1276886\">https:\/\/mainnet-public.mirrornode.hedera.com\/api\/v1\/contracts\/0.0.1276886<\/a><\/p>\n<\/div>\n<figure class=\"blog-image mb-40\"><img decoding=\"async\" src=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/image-5_2023-02-10-205546_ktwc.png\" alt=\"\"\/><\/figure>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\"><strong>Conclusion<\/strong><\/h4>\n<p>We hope this blog has helped you learn how to utilise Arkhia to query various types of transactions on the Hedera network.  If you do not already subscribe to Arkhia and it\u2019s suite of services, visit <a href=\"https:\/\/www.arkhia.io\/\">Arkhia.io <\/a>to learn about the various benefits it brings to builders on Hedera.  We look forward to providing you with reliable, high quality data while you work to empower Web3.<\/p>\n<\/div>\n<div class=\"body-text BodyCopy mb-40 style-1\">\n<h4 class=\"color-ultraviolet\">About ARKHIA<\/h4>\n<p>Arkhia is an enterprise-grade Infrastructure-as-a-Service (IaaS) provider for decentralised technologies. We are empowering organisations, teams, and individuals to build fast, modular, and scalable solutions in our high-availability environments for Web3 applications. Purposely built for reliability, resilience, and high throughput on a multi-chain network, the Arkhia API suite benefits anyone needing ultra-reliable network uptime for mission-critical applications. To learn more about how we provide enterprise-grade infrastructure, visit <a href=\"https:\/\/www.arkhia.io\/\">arkhia.io<\/a>, subscribe to our newsletter, and follow us on <a href=\"https:\/\/twitter.com\/Arkhia_io\">Twitter<\/a> (@arkhia_io), <a href=\"https:\/\/www.linkedin.com\/company\/arkhia\/\">LinkedIn<\/a> and <a href=\"https:\/\/www.reddit.com\/r\/Arkhia\/\">Reddit<\/a>.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial-styled blog post, you will learn how to leverage Arkhia to efficiently call transaction data from the Hedera network for use on your dApp. Using Arkhia as your middleware solution ensures critical data is consistently available. Let\u2019s get started.<\/p>\n","protected":false},"author":10,"featured_media":16879,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[1],"tags":[],"ppma_author":[43],"class_list":["post-15768","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Querying Hedera Transaction History on Arkhia - Arkhitect Awareness Series | 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\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Querying Hedera Transaction History on Arkhia - Arkhitect Awareness Series | Hedera\" \/>\n<meta property=\"og:description\" content=\"In this tutorial-styled blog post, you will learn how to leverage Arkhia to efficiently call transaction data from the Hedera network for use on your dApp. Using Arkhia as your middleware solution ensures critical data is consistently available. Let\u2019s get started.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/\" \/>\n<meta property=\"og:site_name\" content=\"Hedera\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-07T20:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-08T18:46:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/\"},\"author\":{\"name\":\"Hedera Team\",\"@id\":\"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4\"},\"headline\":\"Querying Hedera Transaction History on Arkhia &#8211; Arkhitect Awareness Series\",\"datePublished\":\"2023-02-07T20:00:00+00:00\",\"dateModified\":\"2025-12-08T18:46:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/\"},\"wordCount\":783,\"publisher\":{\"@id\":\"https:\/\/hedera.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png\",\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/\",\"url\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/\",\"name\":\"Querying Hedera Transaction History on Arkhia - Arkhitect Awareness Series | Hedera\",\"isPartOf\":{\"@id\":\"https:\/\/hedera.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png\",\"datePublished\":\"2023-02-07T20:00:00+00:00\",\"dateModified\":\"2025-12-08T18:46:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#primaryimage\",\"url\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png\",\"contentUrl\":\"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hedera.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Querying Hedera Transaction History on Arkhia &#8211; Arkhitect Awareness Series\"}]},{\"@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":"Querying Hedera Transaction History on Arkhia - Arkhitect Awareness Series | 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\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/","og_locale":"en_US","og_type":"article","og_title":"Querying Hedera Transaction History on Arkhia - Arkhitect Awareness Series | Hedera","og_description":"In this tutorial-styled blog post, you will learn how to leverage Arkhia to efficiently call transaction data from the Hedera network for use on your dApp. Using Arkhia as your middleware solution ensures critical data is consistently available. Let\u2019s get started.","og_url":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/","og_site_name":"Hedera","article_published_time":"2023-02-07T20:00:00+00:00","article_modified_time":"2025-12-08T18:46:12+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png","type":"image\/png"}],"author":"Hedera Team","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#article","isPartOf":{"@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/"},"author":{"name":"Hedera Team","@id":"https:\/\/hedera.com\/#\/schema\/person\/2dc6146f9f20a44d3de58c834d52e9f4"},"headline":"Querying Hedera Transaction History on Arkhia &#8211; Arkhitect Awareness Series","datePublished":"2023-02-07T20:00:00+00:00","dateModified":"2025-12-08T18:46:12+00:00","mainEntityOfPage":{"@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/"},"wordCount":783,"publisher":{"@id":"https:\/\/hedera.com\/#organization"},"image":{"@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png","inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/","url":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/","name":"Querying Hedera Transaction History on Arkhia - Arkhitect Awareness Series | Hedera","isPartOf":{"@id":"https:\/\/hedera.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#primaryimage"},"image":{"@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#primaryimage"},"thumbnailUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png","datePublished":"2023-02-07T20:00:00+00:00","dateModified":"2025-12-08T18:46:12+00:00","breadcrumb":{"@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#primaryimage","url":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png","contentUrl":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/hedera.com\/blog\/querying-hedera-transaction-history-on-arkhia-arkhitect-awareness-series\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hedera.com\/"},{"@type":"ListItem","position":2,"name":"Querying Hedera Transaction History on Arkhia &#8211; Arkhitect Awareness Series"}]},{"@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\/Querying-Hedera-Transcation-History-600x400.png","featured_image_src_square":"https:\/\/hedera.com\/wp-content\/uploads\/2025\/12\/Querying-Hedera-Transcation-History-600x600.png","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\/15768","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=15768"}],"version-history":[{"count":0,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/posts\/15768\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media\/16879"}],"wp:attachment":[{"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/media?parent=15768"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/categories?post=15768"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/tags?post=15768"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/hedera.com\/wp-json\/wp\/v2\/ppma_author?post=15768"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}