Hedera Mirror — Blockchain Data for Agents
Query the Hedera public blockchain. No keys, no auth, no rate limits worth worrying about.
Account Balance
CODEBLOCK0
Token Holdings
CODEBLOCK1
Token Info
CODEBLOCK2
Recent Transactions
CODEBLOCK3
NFTs
CODEBLOCK4
Top Tokens by Market
CODEBLOCK5
Network Status
CODEBLOCK6
Base URLs
| Network | URL |
|---|
| Mainnet | INLINECODE0 |
| Testnet |
https://testnet.mirrornode.hedera.com/api/v1 |
API Docs
Full reference: https://docs.hedera.com/hedera/sdks-and-apis/rest-api
Related Skills
- -
clawhub install whale-watch — Monitor large transactions - INLINECODE3 — Manage your agent's wallet
- INLINECODE4 — Claim HBAR bounties for work
Hedera Mirror — 面向智能体的区块链数据
查询Hedera公有区块链。无需密钥、无需认证、无需担心速率限制。
账户余额
bash
HBAR余额(单位为tinybars,除以100000000即为HBAR)
curl -s https://mainnet-public.mirrornode.hedera.com/api/v1/balances?account.id=0.0.1234 | jq .balances[0].balance
代币持仓
bash
账户持有的所有代币
curl -s https://mainnet-public.mirrornode.hedera.com/api/v1/accounts/0.0.1234/tokens | jq .tokens[] | {token_id, balance}
代币信息
bash
代币元数据(名称、符号、供应量、小数位数)
curl -s https://mainnet-public.mirrornode.hedera.com/api/v1/tokens/0.0.TOKEN
ID | jq {name, symbol, totalsupply, decimals, type}
近期交易
bash
账户最近10笔交易
curl -s https://mainnet-public.mirrornode.hedera.com/api/v1/transactions?account.id=0.0.1234&limit=10&order=desc | jq .transactions[] | {id: .transaction
id, type: .name, result: .result, time: .consensustimestamp}
NFT
bash
账户拥有的NFT
curl -s https://mainnet-public.mirrornode.hedera.com/api/v1/accounts/0.0.1234/nfts | jq .nfts[] | {token
id, serialnumber, metadata}
市值排名前列的代币
bash
通过SaucerSwap(Hedera去中心化交易所)
curl -s https://api.saucerswap.finance/tokens | jq .[0:10] | .[] | {name, symbol, price: .priceUsd}
网络状态
bash
当前网络信息
curl -s https://mainnet-public.mirrornode.hedera.com/api/v1/network/supply | jq {total
supply: .totalsupply, released
supply: .releasedsupply}
基础URL
| 网络 | URL |
|---|
| 主网 | https://mainnet-public.mirrornode.hedera.com/api/v1 |
| 测试网 |
https://testnet.mirrornode.hedera.com/api/v1 |
API文档
完整参考:https://docs.hedera.com/hedera/sdks-and-apis/rest-api
相关技能
- - clawhub install whale-watch — 监控大额交易
- clawhub install agent-treasury — 管理智能体的钱包
- clawhub install clawswarm — 领取工作报酬的HBAR赏金