← ClaudeAtlas

arkham-apilisted

Interact with Arkham Intelligence API for blockchain analytics - wallet analysis, transfers tracking, token flows, entity intelligence, portfolio analysis, and on-chain investigations. Use when analyzing crypto addresses, tracking whale movements, investigating transactions, or getting blockchain intelligence.
Vyntral/arkham-intelligence-claude-skill · ★ 14 · AI & Automation · score 73
Install: claude install-skill Vyntral/arkham-intelligence-claude-skill
# Arkham Intelligence API Skill ## Configuration **API Key** must be set in Claude Code settings: ```json // ~/.claude/settings.json { "env": { "ARKHAM_API_KEY": "your_api_key_here" } } ``` Restart Claude Code after adding the key. ## Making API Calls **Important**: Always use this pattern for API calls: ```bash KEY=$(printenv ARKHAM_API_KEY) curl -s "https://api.arkm.com/ENDPOINT" -H "API-Key: $KEY" | jq . ``` ## Rate Limits - **Standard endpoints**: 20 req/sec - **Heavy endpoints** (1 req/sec): `/transfers`, `/swaps`, `/counterparties/*`, `/token/top_flow/*`, `/token/volume/*` ## Quick Reference ### Intelligence ```bash # Address info curl -s "https://api.arkm.com/intelligence/address/0x...?chain=ethereum" -H "API-Key: $KEY" | jq . # Entity info (binance, wintermute, jump-trading, etc.) curl -s "https://api.arkm.com/intelligence/entity/wintermute" -H "API-Key: $KEY" | jq . ``` ### Balances & Portfolio ```bash # Entity balances curl -s "https://api.arkm.com/balances/entity/wintermute" -H "API-Key: $KEY" | jq . # Address balances curl -s "https://api.arkm.com/balances/address/0x...?chains=ethereum,solana" -H "API-Key: $KEY" | jq . ``` ### Transfers ```bash # Recent transfers from entity curl -s "https://api.arkm.com/transfers?base=binance&flow=out&timeLast=24h&limit=20" -H "API-Key: $KEY" | jq . # Large transfers curl -s "https://api.arkm.com/transfers?usdGte=1000000&timeLast=24h&limit=50" -H "API-Key: $KEY" | jq . ``` ### Token Analysis ```bash # Top