{"components":{"securitySchemes":{"BearerAuth":{"scheme":"bearer","type":"http"}}},"info":{"description":"<blockquote><p><strong>Migrating from v1 or v2?</strong> v3 changes pagination, response envelopes, and several endpoints — it is not a drop-in base-path swap. Read the <a href=\"/api-docs/migration\">v1/v2 → v3 migration guide</a> (also available as raw markdown at <a href=\"/api-docs/migration\"><code>/api-docs/migration</code></a> for tooling and AI agents).</p></blockquote>\n        <p>NearBlocks provides REST APIs for accessing NEAR Protocol blockchain data. Our APIs enable developers to retrieve account information, analyze smart contracts, and track transactions. You can access the REST APIs using cURL or any HTTP client. We support GET requests only.</p>\n        <p><h2>Attribution Requirements:</h2></p>\n        <p>The APIs are offered as a community service and are provided without any warranty. Please use them responsibly and only for what you need.</p>\n        <p>For any usage other than personal or private, attribution is required. This can be done by either:</p>\n        <ul>\n        <li>Including a link back to Nearblocks.io, or</li>\n        <li>Mentioning that your app is &quot;Powered by Nearblocks.io APIs.&quot;</li>\n        </ul>\n        <p>NearBlocks provides subscription-based API plans that provide higher rate limits for power users and commercial solutions. To upgrade to a paid API Plan, head over to the <a href=\"https://nearblocks.io/apis\">APIs</a> page and select a plan that suits your needs. Once payment has been made, you can create API keys to make requests to our endpoints.</p>\n        <h2>Resources</h2>\n        <ul>\n          <li><a href=\"https://nearblocks.io/\">Near Protocol Explorer</a></li>\n          <li><a href=\"https://nearblocks.io/apis\">API Plans</a></li>\n          <li><a href=\"https://near.org\">Near</a></li>\n        </ul>\n        <h2>Contact Us</h2>\n        <ul>\n          <li><a href=\"https://nearblocks.io/contact\">NearBlocks Support</a></li>\n        </ul>\n        <h2>Authentication</h2>\n        <p>Include your API key in requests using the <code>Authorization</code> header with the following format:</p>\n        <p>Replace API_KEY with the key string of your API key.</p>\n        <p>For example, to pass an API key for an Account API:</p>\n        <pre><code> curl -X GET -H \"Authorization: Bearer API_KEY\" \"https://api.nearblocks.io/v3/accounts/wrap.near\"</pre></code></p>\n        <h2>Legacy API</h2>\n        <p>Documentation for deprecated v1/v2 endpoints is available at <a href=\"/api-docs/legacy\">/api-docs/legacy</a>. These endpoints will be removed in a future release. To port an existing v1/v2 integration, follow the <a href=\"/api-docs/migration\">migration guide</a>.</p>\n        ","title":" ","version":"1.0.0"},"openapi":"3.0.0","servers":[{"description":"Mainnet","url":"https://api.nearblocks.io"},{"description":"Testnet","url":"https://api-testnet.nearblocks.io"}],"tags":[{"description":"Retrieve account details, balances, contract metadata, access keys, and token holdings.","name":"Accounts"},{"description":"List and filter account transactions, token transfers, receipts, and staking activity.","name":"Account Transactions"},{"description":"Account-level analytics including transaction heatmaps, balance history, and token statistics.","name":"Account Stats"},{"description":"Query blocks by hash or height, list recent blocks, and retrieve 24-hour block production statistics.","name":"Blocks"},{"description":"Look up fungible token contracts, list top tokens, and paginate through transfer history and holder data.","name":"FTs"},{"description":"Look up account information associated with a public access key.","name":"Keys"},{"description":"Query chain-signature multichain transactions and daily signing statistics.","name":"Multichain"},{"description":"Look up NFT contracts and individual tokens, list top collections, and paginate through transfer history and holder data.","name":"NFTs"},{"description":"Search across transactions, blocks, accounts, receipts, and tokens by hash, height, ID, or address.","name":"Search"},{"description":"Network-wide statistics including supply, gas usage, active accounts, and daily aggregates.","name":"Stats"},{"description":"List and filter transactions, retrieve transaction details with receipts, and inspect associated token events.","name":"Txns"}],"x-tagGroups":[{"name":"Accounts","tags":["Accounts","Account Transactions","Account Stats"]},{"name":"Blockchain","tags":["Blocks","Txns","Stats"]},{"name":"Tokens","tags":["FTs","NFTs","MTs"]},{"name":"Other","tags":["Keys","Search","Multichain"]}],"paths":{"/v3/accounts/{account}":{"get":{"summary":"Get account details","tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/balance":{"get":{"summary":"Get account balance","tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/fts":{"get":{"summary":"List account FT balances","tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":250,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/fts/count":{"get":{"summary":"Get account FT balances count","x-internal":true,"tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/fts/{contract}":{"get":{"summary":"Get account FT balance for a specific contract","x-internal":true,"tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"path","name":"contract","required":true,"description":"FT contract account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/nfts":{"get":{"summary":"List account NFT balances","tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":24,"default":24}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/nfts/count":{"get":{"summary":"Get account NFT balances count","x-internal":true,"tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/mts/fts":{"get":{"summary":"List account MT (fungible) balances","tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":250,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/mts/fts/count":{"get":{"summary":"Get account MT (fungible) balances count","x-internal":true,"tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/mts/nfts":{"get":{"summary":"List account MT (non-fungible) balances","tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":24,"default":24}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/assets/mts/nfts/count":{"get":{"summary":"Get account MT (non-fungible) balances count","x-internal":true,"tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/contract":{"get":{"summary":"Get contract metadata","tags":["Accounts"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/contract/deployments":{"get":{"summary":"Get contract deployment history","tags":["Accounts"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/contract/schema":{"get":{"summary":"Get contract ABI schema","tags":["Accounts"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/contract/{method}/action":{"get":{"summary":"Get latest action args for a contract method","tags":["Accounts"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/ft-txns":{"get":{"summary":"List account FT transfers","tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"contract","description":"Contract ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"involved","description":"Involved account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/ft-txns/count":{"get":{"summary":"Get estimated account FT transfer count","x-internal":true,"tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"contract","description":"Contract ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"involved","description":"Involved account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/keys":{"get":{"summary":"List account access keys","tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/keys/count":{"get":{"summary":"Get account access key count","x-internal":true,"tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/mt-txns":{"get":{"summary":"List account multi-token transfers","tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"contract","description":"Contract ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"token","description":"Token ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"involved","description":"Involved account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/mt-txns/count":{"get":{"summary":"Get estimated account multi-token transfer count","x-internal":true,"tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"contract","description":"Contract ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"token","description":"Token ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"involved","description":"Involved account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/nft-txns":{"get":{"summary":"List account NFT transfers","tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"contract","description":"Contract ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"token","description":"Token ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"involved","description":"Involved account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/nft-txns/count":{"get":{"summary":"Get estimated account NFT transfer count","x-internal":true,"tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"contract","description":"Contract ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"token","description":"Token ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"involved","description":"Involved account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/receipts":{"get":{"summary":"List account receipts","tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"predecessor","description":"Receipt predecessor account to filter results by","schema":{"type":"string"}},{"in":"query","name":"receiver","description":"Receipt receiver account to filter results by","schema":{"type":"string"}},{"in":"query","name":"action","description":"Receipt action to filter results by","schema":{"type":"string"}},{"in":"query","name":"method","description":"Function call method to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/receipts/count":{"get":{"summary":"Get estimated account receipt count","x-internal":true,"tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"predecessor","description":"Receipt predecessor account to filter results by","schema":{"type":"string"}},{"in":"query","name":"receiver","description":"Receipt receiver account to filter results by","schema":{"type":"string"}},{"in":"query","name":"action","description":"Receipt action to filter results by","schema":{"type":"string"}},{"in":"query","name":"method","description":"Function call method to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/staking-txns":{"get":{"summary":"List account staking transactions","tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"contract","description":"Contract ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/staking-txns/count":{"get":{"summary":"Get estimated account staking transaction count","x-internal":true,"tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"contract","description":"Contract ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/stats":{"get":{"summary":"Get account statistics overview","tags":["Account Stats"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/stats/heatmap":{"get":{"summary":"Get account transaction heatmap","tags":["Account Stats"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/stats/txns":{"get":{"summary":"Get account transaction statistics","tags":["Account Stats"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":365}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/stats/balance":{"get":{"summary":"Get account balance history","tags":["Account Stats"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":365}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/stats/near":{"get":{"summary":"Get account NEAR statistics","tags":["Account Stats"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":365}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/stats/fts":{"get":{"summary":"Get account FT statistics","tags":["Account Stats"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":365}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/stats/nfts":{"get":{"summary":"Get account NFT statistics","tags":["Account Stats"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":365}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/stats/mts":{"get":{"summary":"Get account MT statistics","tags":["Account Stats"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":365}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/subaccounts":{"get":{"summary":"List account sub accounts","tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/subaccounts/count":{"get":{"summary":"Get account sub account count","x-internal":true,"tags":["Accounts"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/txns":{"get":{"summary":"List account transactions","tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"signer","description":"Txn signer account to filter results by","schema":{"type":"string"}},{"in":"query","name":"receiver","description":"Txn receiver account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/accounts/{account}/txns/count":{"get":{"summary":"Get estimated account transaction count","x-internal":true,"tags":["Account Transactions"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"signer","description":"Txn signer account to filter results by","schema":{"type":"string"}},{"in":"query","name":"receiver","description":"Txn receiver account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/blocks":{"get":{"summary":"List blocks","tags":["Blocks"],"parameters":[{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/blocks/count":{"get":{"summary":"Get estimated block count","x-internal":true,"tags":["Blocks"],"responses":{"200":{"description":"Success response"}}}},"/v3/blocks/latest":{"get":{"summary":"List latest blocks","description":"⚠️ Response is cached for 5 seconds","tags":["Blocks"],"parameters":[{"in":"query","name":"limit","description":"The number of items to return","schema":{"type":"integer","minimum":1,"maximum":10,"default":10}}],"responses":{"200":{"description":"Success response"}}}},"/v3/blocks/stats":{"get":{"summary":"Get 24-hour block statistics","tags":["Blocks"],"responses":{"200":{"description":"Success response"}}}},"/v3/blocks/{hash}":{"get":{"summary":"Get block by hash","tags":["Blocks"],"parameters":[{"in":"path","name":"hash","required":true,"description":"Block hash or block height to retrieve","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}":{"get":{"summary":"Get FT contract details","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}/txns":{"get":{"summary":"List FT contract transfers","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"affected","description":"Affected account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}/txns/count":{"get":{"summary":"Get FT contract transfer count","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"affected","description":"Affected account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}/holders":{"get":{"summary":"List FT contract holders","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}/holders/count":{"get":{"summary":"Get FT contract holder count","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}/stats/overview":{"get":{"summary":"Get FT contract stats overview","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}/stats/heatmap":{"get":{"summary":"Get FT contract transfer heatmap (last 11 months, daily)","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}/stats/transfers":{"get":{"summary":"Get FT contract daily transfer stats","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"Number of days to return (max 365)","schema":{"type":"integer","minimum":1,"maximum":365,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/{contract}/stats/{account}/transfers":{"get":{"summary":"Get daily FT transfer stats for a specific account on a contract","tags":["FTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"Number of days to return (max 365)","schema":{"type":"integer","minimum":1,"maximum":365,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts":{"get":{"summary":"List top fungible tokens","tags":["FTs"],"parameters":[{"in":"query","name":"search","description":"Search keyword","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}},{"in":"query","name":"sort","description":"Sort field","schema":{"type":"string","enum":["market_cap","name","onchain_market_cap","price","volume_24h"],"default":"volume_24h"}},{"in":"query","name":"order","description":"Sort order","schema":{"type":"string","enum":["desc","asc"],"default":"desc"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/count":{"get":{"summary":"Get fungible token count","x-internal":true,"tags":["FTs"],"parameters":[{"in":"query","name":"search","description":"Search keyword","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/txns":{"get":{"summary":"List all FT transfers","tags":["FTs"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/fts/txns/count":{"get":{"summary":"Get FT transfer count","x-internal":true,"tags":["FTs"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/txns":{"get":{"summary":"List NEAR Intents transfers","tags":["Intents"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/txns/count":{"get":{"summary":"Get NEAR Intents transfer count","tags":["Intents"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/volume-stats":{"get":{"summary":"Get daily and cumulative NEAR Intents swap volume (USD)","tags":["Intents"],"parameters":[{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of days to return","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/swap-stats":{"get":{"summary":"Get daily and cumulative NEAR Intents swap counts","tags":["Intents"],"parameters":[{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of days to return","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/volume-stats/assets":{"get":{"summary":"Get daily NEAR Intents swap volume/swaps broken down by asset","tags":["Intents"],"parameters":[{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of days to return","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/volume-stats/blockchains":{"get":{"summary":"Get daily NEAR Intents swap volume/swaps broken down by blockchain","tags":["Intents"],"parameters":[{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of days to return","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/token-stats":{"get":{"summary":"Get daily count of unique NEAR Intents tokens swapped","tags":["Intents"],"parameters":[{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of days to return","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/blockchain-stats":{"get":{"summary":"Get daily count of unique blockchains active on NEAR Intents","tags":["Intents"],"parameters":[{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of days to return","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/account-stats":{"get":{"summary":"Get daily count of unique accounts swapping on NEAR Intents","tags":["Intents"],"parameters":[{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of days to return","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/intents/stats":{"get":{"summary":"Get all-time NEAR Intents swap volume/swaps totals, plus previous day totals","tags":["Intents"],"responses":{"200":{"description":"Success response"}}}},"/v3/keys/{key}":{"get":{"summary":"Get access key info","tags":["Keys"],"parameters":[{"in":"path","name":"key","required":true,"description":"Public key","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/kitwallet/stakingPools":{"get":{"summary":"Get all staking pools","tags":["Kitwallet"],"responses":{"200":{"description":"Success response"}}}},"/v3/kitwallet/staking-deposits/{account}":{"get":{"summary":"Get staking deposits for an account","tags":["Kitwallet"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"},"examples":{"account":{"value":"example-account-id"}}}],"responses":{"200":{"description":"Success response"}}}},"/v3/kitwallet/publicKey/{key}/accounts":{"get":{"summary":"Get accounts by public key","tags":["Kitwallet"],"parameters":[{"in":"path","name":"key","required":true,"description":"Public key","schema":{"type":"string"},"examples":{"key":{"value":"example-public-key"}}}],"responses":{"200":{"description":"Success response"}}}},"/v3/kitwallet/account/{account}/likelyTokens":{"get":{"summary":"Get likely tokens for an account","tags":["Kitwallet"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"},"examples":{"account":{"value":"example-account-id"}}}],"responses":{"200":{"description":"Success response"}}}},"/v3/kitwallet/account/{account}/likelyTokensFromBlock":{"get":{"summary":"Get likely tokens for an account from block","tags":["Kitwallet"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"},"examples":{"account":{"value":"example-account-id"}}},{"in":"query","name":"fromBlockTimestamp","description":"Block timestamp in nanoseconds","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/kitwallet/account/{account}/likelyNFTs":{"get":{"summary":"Get likely NFTs for an account","tags":["Kitwallet"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"},"examples":{"account":{"value":"example-account-id"}}}],"responses":{"200":{"description":"Success response"}}}},"/v3/kitwallet/account/{account}/likelyNFTsFromBlock":{"get":{"summary":"Get likely NFTs for an account from block","tags":["Kitwallet"],"parameters":[{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"},"examples":{"account":{"value":"example-account-id"}}},{"in":"query","name":"fromBlockTimestamp","description":"Block timestamp in nanoseconds","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/txns":{"get":{"summary":"List MT contract transfers","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"affected","description":"Affected account to filter results by","schema":{"type":"string"}},{"in":"query","name":"token","description":"Token ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/txns/count":{"get":{"summary":"Get MT contract transfer count","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"affected","description":"Affected account to filter results by","schema":{"type":"string"}},{"in":"query","name":"token","description":"Token ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts":{"get":{"summary":"List top multi-tokens (FT)","tags":["MTs"],"parameters":[{"in":"query","name":"search","description":"Search keyword","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}},{"in":"query","name":"sort","description":"Sort field","schema":{"type":"string","enum":["holders","name","onchain_market_cap","price","transfers","volume_24h"],"default":"volume_24h"}},{"in":"query","name":"order","description":"Sort order","schema":{"type":"string","enum":["desc","asc"],"default":"desc"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/count":{"get":{"summary":"Get multi-token (FT) count","x-internal":true,"tags":["MTs"],"parameters":[{"in":"query","name":"search","description":"Search keyword","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/txns":{"get":{"summary":"List all MT transfers","tags":["MTs"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/txns/count":{"get":{"summary":"Get MT transfer count","x-internal":true,"tags":["MTs"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens":{"get":{"summary":"List MT tokens in a contract","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor","schema":{"type":"string"}},{"in":"query","name":"limit","schema":{"type":"integer","minimum":1,"maximum":25,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/count":{"get":{"summary":"Get MT token count in a contract","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}":{"get":{"summary":"Get MT token details","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}/txns":{"get":{"summary":"List MT token transfers","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor","schema":{"type":"string"}},{"in":"query","name":"limit","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}/txns/count":{"get":{"summary":"Get MT token transfer count","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}/holders":{"get":{"summary":"List MT token holders","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor","schema":{"type":"string"}},{"in":"query","name":"limit","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}/holders/count":{"get":{"summary":"Get MT token holder count","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}/stats/overview":{"get":{"summary":"Get MT token stats overview","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}/stats/heatmap":{"get":{"summary":"Get MT token transfer heatmap (last 11 months, daily)","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}/stats/transfers":{"get":{"summary":"Get MT token daily transfer stats","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"Number of days to return (max 365)","schema":{"type":"integer","minimum":1,"maximum":365,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/mts/{contract}/tokens/{token}/stats/{account}/transfers":{"get":{"summary":"Get daily MT transfer stats for a specific account on a token","tags":["MTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}},{"in":"path","name":"account","required":true,"description":"Account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"Number of days to return (max 365)","schema":{"type":"integer","minimum":1,"maximum":365,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/multichain/mpcs":{"get":{"summary":"List MPC operators","tags":["Multichain"],"responses":{"200":{"description":"Success response"}}}},"/v3/multichain/signatures":{"get":{"summary":"List multichain signature transactions","tags":["Multichain"],"parameters":[{"in":"query","name":"account","description":"Account ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"chain","description":"Destination chain to filter results by","schema":{"type":"string","enum":["ARBITRUM","BASE","BITCOIN","BSC","ETHEREUM","GNOSIS","OPTIMISM","POLYGON","SOLANA","ZCASH"]}},{"in":"query","name":"address","description":"Destination address to filter results by","schema":{"type":"string"}},{"in":"query","name":"txn","description":"Destination transaction hash to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/multichain/signatures/count":{"get":{"summary":"Get estimated multichain signature count","x-internal":true,"tags":["Multichain"],"parameters":[{"in":"query","name":"account","description":"Account ID to filter results by","schema":{"type":"string"}},{"in":"query","name":"chain","description":"Destination chain to filter results by","schema":{"type":"string","enum":["ARBITRUM","BASE","BITCOIN","BSC","ETHEREUM","GNOSIS","OPTIMISM","POLYGON","SOLANA","ZCASH"]}},{"in":"query","name":"address","description":"Destination address to filter results by","schema":{"type":"string"}},{"in":"query","name":"txn","description":"Destination transaction hash to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/multichain/signatures/stats":{"get":{"summary":"Get 24-hour multichain signature statistics","tags":["Multichain"],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}":{"get":{"summary":"Get NFT contract details","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/txns":{"get":{"summary":"List NFT contract transfers","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"affected","description":"Affected account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/txns/count":{"get":{"summary":"Get NFT contract transfer count","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"affected","description":"Affected account to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/holders":{"get":{"summary":"List NFT contract holders","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/holders/count":{"get":{"summary":"Get NFT contract holder count","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts":{"get":{"summary":"List top NFT collections","tags":["NFTs"],"parameters":[{"in":"query","name":"search","description":"Search keyword","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}},{"in":"query","name":"sort","description":"Sort field","schema":{"type":"string","enum":["name","tokens","transfers_24h"],"default":"transfers_24h"}},{"in":"query","name":"order","description":"Sort order","schema":{"type":"string","enum":["desc","asc"],"default":"desc"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/count":{"get":{"summary":"Get NFT collection count","x-internal":true,"tags":["NFTs"],"parameters":[{"in":"query","name":"search","description":"Search keyword","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/txns":{"get":{"summary":"List all NFT transfers","tags":["NFTs"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/txns/count":{"get":{"summary":"Get NFT transfer count","x-internal":true,"tags":["NFTs"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/tokens":{"get":{"summary":"List NFT tokens in a contract","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/tokens/count":{"get":{"summary":"Get NFT token count in a contract","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/tokens/{token}":{"get":{"summary":"Get NFT token details","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/tokens/{token}/txns":{"get":{"summary":"List NFT token transfers","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/nfts/{contract}/tokens/{token}/txns/count":{"get":{"summary":"Get NFT token transfer count","tags":["NFTs"],"parameters":[{"in":"path","name":"contract","required":true,"description":"Contract ID","schema":{"type":"string"}},{"in":"path","name":"token","required":true,"description":"Token ID","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/receipts":{"get":{"summary":"List receipts","tags":["Receipts"],"parameters":[{"in":"query","name":"block","description":"Block hash to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/receipts/count":{"get":{"summary":"Get estimated receipt count","x-internal":true,"tags":["Receipts"],"parameters":[{"in":"query","name":"block","description":"Block hash to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search":{"get":{"summary":"Search all entities","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"Txn hash / account id / contract id / block hash / block height / receipt id / token contract ...","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search/accounts":{"get":{"summary":"Search accounts","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"Account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search/blocks":{"get":{"summary":"Search blocks","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"Block hash / block height","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search/keys":{"get":{"summary":"Search access keys","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"Public key","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search/fts":{"get":{"summary":"Search fungible tokens","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"Token contract","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search/mts":{"get":{"summary":"Search multi-token (MT) FT tokens","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"MT token ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search/nfts":{"get":{"summary":"Search NFTs","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"Token contract","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search/receipts":{"get":{"summary":"Search receipts","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"Receipt ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/search/txns":{"get":{"summary":"Search transactions","tags":["Search"],"parameters":[{"in":"query","name":"keyword","description":"Txn hash","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/staking-txns":{"get":{"summary":"List staking transactions","tags":["Staking"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/staking-txns/count":{"get":{"summary":"Get estimated staking transaction count","x-internal":true,"tags":["Staking"],"parameters":[{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}}],"responses":{"200":{"description":"Success response"}}}},"/v3/stats":{"get":{"summary":"Get network stats","tags":["Stats"],"responses":{"200":{"description":"Success response"}}}},"/v3/block-stats":{"get":{"summary":"Get daily block stats","tags":["Stats"],"parameters":[{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer"}},{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txn-stats":{"get":{"summary":"Get daily transaction stats","tags":["Stats"],"parameters":[{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer"}},{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/address-stats":{"get":{"summary":"Get daily address stats","tags":["Stats"],"parameters":[{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer"}},{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/price-stats":{"get":{"summary":"Get daily NEAR price and market-cap stats","tags":["Stats"],"parameters":[{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer"}},{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/signer-stats":{"get":{"summary":"Get daily signer stats","tags":["Stats"],"parameters":[{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer"}},{"in":"query","name":"date","description":"Date in YYYY-MM-DD format","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/signer-stats/total":{"get":{"summary":"Get all-time signer contract transaction and gas totals","tags":["Stats"],"responses":{"200":{"description":"Success response"}}}},"/v3/tps-stats":{"get":{"summary":"Get transactions-per-second stats","tags":["Stats"],"parameters":[{"in":"query","name":"limit","description":"The number of items to return (max 60).","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txns":{"get":{"summary":"List transactions","tags":["Txns"],"parameters":[{"in":"query","name":"block","description":"Block hash to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txns/count":{"get":{"summary":"Get estimated transaction count","x-internal":true,"tags":["Txns"],"parameters":[{"in":"query","name":"block","description":"Block hash to filter results by","schema":{"type":"string"}},{"in":"query","name":"before_ts","description":"Timestamp in nanoseconds. Return results before this timestamp (exclusive)","schema":{"type":"string","minLength":19,"maxLength":19}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txns/latest":{"get":{"summary":"List latest transactions","description":"⚠️ Response is cached for 5 seconds","tags":["Txns"],"parameters":[{"in":"query","name":"limit","description":"The number of items to return","schema":{"type":"integer","minimum":1,"maximum":10,"default":10}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txns/stats":{"get":{"summary":"Get 24-hour transaction statistics","tags":["Txns"],"responses":{"200":{"description":"Success response"}}}},"/v3/txns/{hash}":{"get":{"summary":"Get transaction by hash","tags":["Txns"],"parameters":[{"in":"path","name":"hash","required":true,"description":"Txn hash or RLP hash to retrieve","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txns/{hash}/receipts":{"get":{"summary":"List transaction receipts","tags":["Txns"],"parameters":[{"in":"path","name":"hash","required":true,"description":"Txn hash or RLP hash to retrieve receipts for","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txns/{hash}/fts":{"get":{"summary":"List transaction FT events","tags":["Txns"],"parameters":[{"in":"path","name":"hash","required":true,"description":"Txn hash or RLP hash to retrieve ft events for","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txns/{hash}/nfts":{"get":{"summary":"List transaction NFT events","tags":["Txns"],"parameters":[{"in":"path","name":"hash","required":true,"description":"Txn hash or RLP hash to retrieve nft events for","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/txns/{hash}/mts":{"get":{"summary":"List transaction multi-token events","tags":["Txns"],"parameters":[{"in":"path","name":"hash","required":true,"description":"Txn hash or RLP hash to retrieve mt events for","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/validators":{"get":{"summary":"List validators","tags":["Validators"],"parameters":[{"in":"query","name":"next","description":"Next page cursor. Pass the next_page value returned from the previous response to retrieve the next page of results","schema":{"type":"string"}},{"in":"query","name":"prev","description":"Previous page cursor. Pass the prev_page value returned from the previous response to retrieve the previous page of results","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":100,"default":25}}],"responses":{"200":{"description":"Success response"}}}},"/v3/validators/info":{"get":{"summary":"Get validator network info","tags":["Validators"],"responses":{"200":{"description":"Success response"}}}},"/v3/validators/{account}":{"get":{"summary":"Get validator details","tags":["Validators"],"parameters":[{"in":"path","name":"account","required":true,"description":"Validator account ID","schema":{"type":"string"}}],"responses":{"200":{"description":"Success response"}}}},"/v3/validators/{account}/stats/blocks":{"get":{"summary":"Get validator daily blocks produced","tags":["Validators"],"parameters":[{"in":"path","name":"account","required":true,"description":"Validator account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":365}}],"responses":{"200":{"description":"Success response"}}}},"/v3/validators/{account}/stats/chunks":{"get":{"summary":"Get validator daily chunks produced","tags":["Validators"],"parameters":[{"in":"path","name":"account","required":true,"description":"Validator account ID","schema":{"type":"string"}},{"in":"query","name":"limit","description":"The number of items to return. Each increment of 25 will count towards rate limit. For example, limit 50 will use 2 credits","schema":{"type":"integer","minimum":1,"maximum":365}}],"responses":{"200":{"description":"Success response"}}}}}}