一键导入
nansen-profiler
Profile any wallet or entity on-chain via Nansen CLI. Look up balances, labels, transactions, PnL, related wallets, and counterparties.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Profile any wallet or entity on-chain via Nansen CLI. Look up balances, labels, transactions, PnL, related wallets, and counterparties.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | nansen-profiler |
| description | Profile any wallet or entity on-chain via Nansen CLI. Look up balances, labels, transactions, PnL, related wallets, and counterparties. |
| metadata | {"clawdbot":{"emoji":"🔎","homepage":"https://nansen.ai","requires":{"bins":["nansen"]}}} |
Profile any wallet: balances, labels, PnL, transactions, and counterparties.
| User Intent | Command | Key Options | Status |
|---|---|---|---|
| Token holdings | profiler balance | --address (req), --chain, --entity | ✅ |
| Wallet labels | profiler labels | --address (req), --chain | ✅ |
| Transactions | profiler transactions | --address (req), --chain, --date (req), --limit | ⚠️ needs --date |
| Historical balances | profiler historical-balances | --address (req), --chain, --days | ✅ |
| Counterparties | profiler counterparties | --address (req), --chain, --days | ✅ |
| Related wallets | profiler related-wallets | --address (req), --chain, --limit | ✅ |
| PnL summary | profiler pnl-summary | --address (req), --chain, --days | ✅ |
| Perp trades | profiler perp-trades | --address (req), --days, --limit | ✅ |
| Perp positions | profiler perp-positions | --address (req) | ✅ |
| Entity search | profiler search | --query (req), --limit | ✅ |
| Batch profile | profiler batch | --addresses or --file (req), --chain, --include | ✅ |
| Counterparty trace | profiler trace | --address (req), --chain, --depth, --width | ⚠️ See note |
| Compare wallets | profiler compare | --addresses (req), --chain, --days | ✅ |
| PnL (per-token) | profiler pnl | --address (req), --chain, --date (req) | ⚠️ CLI broken, use curl |
profiler pnl — The CLI calls the old endpoint path (pnl-and-trade-performance) which returns 404. The correct API endpoint /api/v1/profiler/address/pnl works via curl. Requires date range. Use profiler pnl-summary for aggregate PnL, or curl for per-token PnL.profiler trace (counterparty trace) — Will not work for high-volume addresses if you search longer timeframes. Use --depth 2 and short timeframes for large wallets.profiler transactions requires --date '{"from": "YYYY-MM-DD", "to": "YYYY-MM-DD"}' — the --days option alone does NOT work.profiler labels returns: label, category, definition, fullname, smEarnedDate (not label_type/label_subtype as schema suggests)profiler historical-balances returns: block_timestamp, chain, token_address, token_amount, token_symbol, value_usd (not date/balance/balance_usd)profiler pnl-summary returns top-level fields: top5_tokens, traded_token_count, traded_times, realized_pnl_usd, realized_pnl_percent, win_rate# Search for an entity by name
nansen profiler search --query "Vitalik"
nansen profiler search --query "Binance"
# Who is this wallet?
nansen profiler labels --address 0x... --table
nansen profiler balance --address 0x... --sort value_usd:desc --limit 20 --table
# Historical balances
nansen profiler historical-balances --address 0x... --chain ethereum --days 30 --table
# Counterparties
nansen profiler counterparties --address 0x... --chain ethereum --table
# Related wallets
nansen profiler related-wallets --address 0x... --chain ethereum --limit 10 --table
# PnL summary
nansen profiler pnl-summary --address 0x... --chain ethereum --days 30
# Transactions (--date is required!)
nansen profiler transactions --address 0x... --chain ethereum --date '{"from": "2026-01-01", "to": "2026-02-15"}' --limit 20 --table
# Perp positions
nansen profiler perp-positions --address 0x...
# Batch profile multiple wallets
nansen profiler batch --addresses "0xabc...,0xdef..." --chain ethereum --include labels,balance
# Counterparty trace (BFS) — use low depth for high-volume wallets
nansen profiler trace --address 0x... --chain ethereum --depth 2 --width 10
# Per-token PnL (CLI broken, use curl)
curl -s -X POST 'https://api.nansen.ai/api/v1/profiler/address/pnl' \
-H "apiKey: $NANSEN_API_KEY" -H 'Content-Type: application/json' \
-d '{"address":"0x...","chain":"ethereum","date":{"from":"2026-01-01","to":"2026-02-17"}}'
# Compare two wallets
nansen profiler compare --addresses "0xabc...,0xdef..." --chain ethereum
If user gives a ticker instead of address:
nansen token screener --chain solana --sort volume:desc
# Filter output by token_symbol to find the address
# Note: --search flag does NOT filter results
references/commands.md (profiler section)references/examples/profiler-balance.jsonreferences/schema.json📊 Data by Nansen
Nansen CLI authentication, setup, and schema introspection. Required foundation for all other Nansen skills. Handles API key management, CLI installation verification, and dynamic command discovery via `nansen schema`. Install this skill first.
Hyperliquid perpetual trading analytics via Nansen CLI. Track smart money perp trades, open positions, PnL leaderboards, and trader analysis on Hyperliquid.
Track Smart Money flows, DEX trades, holdings, and DCA strategies across 18 chains via Nansen CLI. Use when the user asks about what smart money is buying/selling, capital flows, fund activity, or smart trader positions.
Token God Mode analytics via Nansen CLI. Screen tokens, analyze holders, track flows, see who's buying/selling, PnL leaderboards, and flow intelligence by label.
Entry point for all Nansen queries. Routes user requests to the correct Nansen skill based on intent. Load this skill first — it decides which domain skill to activate for any blockchain analytics question.
View DeFi portfolio positions across protocols via Nansen CLI. Shows lending, borrowing, LP positions, staking, and yield farming for any wallet address.