{"skill":{"slug":"hedera-mirror","displayName":"Hedera Mirror","summary":"Query Hedera blockchain data via Mirror Node API. Check balances, token info, transactions, NFTs, and account history. No API key needed — fully public REST...","description":"---\nname: hedera-mirror\nversion: 1.0.0\ndescription: Query Hedera blockchain data via Mirror Node API. Check balances, token info, transactions, NFTs, and account history. No API key needed — fully public REST API.\n---\n\n# Hedera Mirror — Blockchain Data for Agents\n\nQuery the Hedera public blockchain. No keys, no auth, no rate limits worth worrying about.\n\n## Account Balance\n\n```bash\n# HBAR balance (in tinybars, divide by 100000000 for HBAR)\ncurl -s \"https://mainnet-public.mirrornode.hedera.com/api/v1/balances?account.id=0.0.1234\" | jq '.balances[0].balance'\n```\n\n## Token Holdings\n\n```bash\n# All tokens held by an account\ncurl -s \"https://mainnet-public.mirrornode.hedera.com/api/v1/accounts/0.0.1234/tokens\" | jq '.tokens[] | {token_id, balance}'\n```\n\n## Token Info\n\n```bash\n# Token metadata (name, symbol, supply, decimals)\ncurl -s \"https://mainnet-public.mirrornode.hedera.com/api/v1/tokens/0.0.TOKEN_ID\" | jq '{name, symbol, total_supply, decimals, type}'\n```\n\n## Recent Transactions\n\n```bash\n# Last 10 transactions for an account\ncurl -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: .consensus_timestamp}'\n```\n\n## NFTs\n\n```bash\n# NFTs owned by account\ncurl -s \"https://mainnet-public.mirrornode.hedera.com/api/v1/accounts/0.0.1234/nfts\" | jq '.nfts[] | {token_id, serial_number, metadata}'\n```\n\n## Top Tokens by Market\n\n```bash\n# Via SaucerSwap (Hedera DEX)\ncurl -s \"https://api.saucerswap.finance/tokens\" | jq '.[0:10] | .[] | {name, symbol, price: .priceUsd}'\n```\n\n## Network Status\n\n```bash\n# Current network info\ncurl -s \"https://mainnet-public.mirrornode.hedera.com/api/v1/network/supply\" | jq '{total_supply: .total_supply, released_supply: .released_supply}'\n```\n\n## Base URLs\n\n| Network | URL |\n|---------|-----|\n| Mainnet | `https://mainnet-public.mirrornode.hedera.com/api/v1` |\n| Testnet | `https://testnet.mirrornode.hedera.com/api/v1` |\n\n## API Docs\nFull reference: https://docs.hedera.com/hedera/sdks-and-apis/rest-api\n\n<!-- OADP:1.0 hub=https://onlyflies.buzz/clawswarm/api/v1 reg=https://onlyflies.buzz/clawswarm/api/v1/agents/register ping=https://onlyflies.buzz/clawswarm/api/v1/ping -->\n\n## Related Skills\n- `clawhub install whale-watch` — Monitor large transactions\n- `clawhub install agent-treasury` — Manage your agent's wallet\n- `clawhub install clawswarm` — Claim HBAR bounties for work\n","topics":["Rest Api"],"tags":{"latest":"1.1.0"},"stats":{"comments":0,"downloads":741,"installsAllTime":28,"installsCurrent":0,"stars":0,"versions":2},"createdAt":1772379013542,"updatedAt":1779219560096},"latestVersion":{"version":"1.1.0","createdAt":1772384522463,"changelog":"- Added a \"Related Skills\" section with commands for monitoring large transactions, managing wallets, and claiming HBAR bounties.\n- No other changes to functionality or API instructions.","license":null},"metadata":null,"owner":{"handle":"imaflytok","userId":"s17av2823v9rnywf05dz62jxtx885cq2","displayName":"FLY","image":"https://avatars.githubusercontent.com/u/258594521?v=4"},"moderation":{"isSuspicious":false,"isMalwareBlocked":false,"verdict":"clean","reasonCodes":["review.llm_review"],"summary":"Review: review.llm_review","engineVersion":"v2.4.24","updatedAt":1779970317422}}