
Nansen Profiler
- 11 installs
- 7 repo stars
- Updated February 22, 2026
- nansen-ai/nansen-skills
Helps with ai & agent building tasks during AI-assisted development.
About
nansen-profiler is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- nansen-profiler
- AI & Agent Building
- AI-coding skill
Nansen Profiler by the numbers
- 11 all-time installs (skills.sh)
- Ranked #11,769 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nansen-ai/nansen-skills --skill nansen-profilerAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 11 |
|---|---|
| repo stars | ★ 7 |
| Last updated | February 22, 2026 |
| Repository | nansen-ai/nansen-skills ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Nansen Profiler — Wallet Intelligence
Profile any wallet: balances, labels, PnL, transactions, and counterparties.
When This Skill Activates
- "Who is this wallet?" / "What does 0x... hold?"
- "Show PnL for this address"
- "Transaction history" / "Related wallets" / "Counterparties"
- "Search for entity" / "Find wallet by name"
Command Routing
| 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 |
⚠️ Known Issues
- `profiler pnl` — The CLI calls the old endpoint path (
pnl-and-trade-performance) which returns 404. The correct API endpoint/api/v1/profiler/address/pnlworks via curl. Requiresdaterange. Useprofiler pnl-summaryfor 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 2and short timeframes for large wallets. - `profiler transactions` requires
--date '{"from": "YYYY-MM-DD", "to": "YYYY-MM-DD"}'— the--daysoption alone does NOT work.
Response Field Notes
- `profiler labels` returns:
label,category,definition,fullname,smEarnedDate(notlabel_type/label_subtypeas schema suggests) - `profiler historical-balances` returns:
block_timestamp,chain,token_address,token_amount,token_symbol,value_usd(notdate/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
Examples
# 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 ethereumInvestigation Workflow
1. Search → find entity 2. Labels → identity 3. Balance → current holdings 4. Historical Balances → trends 5. Counterparties → interactions 6. Trace → network mapping
Ticker Resolution
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 resultsReferences
- Command parameters:
references/commands.md(profiler section) - Example response:
references/examples/profiler-balance.json - Cached schema:
references/schema.json
Attribution
📊 Data by Nansen
Related skills
AI & Agent Buildingagents