REST API for blockchain analytics
https://api.mugenlink-network.me/api
# Get dashboard overview
curl https://api.mugenlink-network.me/api/dashboard/overview
# Search for a wallet
curl "https://api.mugenlink-network.me/api/network/search?query=YOUR_WALLET_ADDRESS"
# Get network stats for Bitcoin (last 7 days)
curl "https://api.mugenlink-network.me/api/dashboard/network-stats?coin_type=BITCOIN&days=7"
/api/dashboard/overview
Get complete dashboard metrics including latest blocks, transaction counts, top wallets, and 7-day trends.
refresh (boolean) - Force refresh from database
/api/dashboard/sample-addresses
Get one sample wallet address per coin. Changes daily based on date-based hash.
/api/dashboard/network-stats
Get network statistics for a specific coin over a date range.
coin_type (string) - BITCOIN, LITECOIN, etc. |
days (int) - Days to look back
/api/dashboard/refresh
Force refresh dashboard cache and fetch fresh data from Snowflake.
/api/network/recent-blocks
Get recent blocks with transaction counts.
coin_type (string) |
limit (int, default: 10)
/api/network/recent-transactions
Get recent transactions with fees and input/output counts.
coin_type (string) |
limit (int, default: 10)
/api/network/search
Search for transactions by hash or wallets by address. Returns type-specific results.
query (string, required) - Transaction hash or wallet address
Bitcoin
BITCOIN
Litecoin
LITECOIN
Dogecoin
DOGECOIN
Dash
DASH
Zcash
ZCASH
Bitcoin Cash
BITCOIN_CASH
All responses are JSON. Dashboard endpoints include caching metadata:
{
"latest_blocks": [...],
"transaction_counts": [...],
"top_wallets": [...],
"trends": [...],
"cached": true,
"last_updated": "2025-12-07T05:49:55.164889"
}