
Nansen Polymarket Deep Dive
- 357 installs
- 127 repo stars
- Updated August 4, 2026
- nansen-ai/nansen-cli
nansen-polymarket-deep-dive is an agent skill that runs Nansen CLI research commands for a Polymarket market ID to surface OHLCV, orderbook, holders, trades, and PnL for developers researching prediction-market positioni
About
nansen-polymarket-deep-dive is a Nansen CLI agent skill from nansen-ai/nansen-cli for analyzing one Polymarket prediction market by numeric market_id. It chains six Bash commands—pm ohlcv, orderbook, top-holders, position-detail, trades-by-market, and pnl-by-market—each with documented flags and column outputs on Polygon addresses. Developers reach for nansen-polymarket-deep-dive when they need holder concentration, trade flow, or leaderboard PnL on a specific market after screener selection. The skill requires the nansen binary, NANSEN_API_KEY, and a market_id from the nansen-prediction-market screener skill. It works for active or closed markets and limits default result sets to 20–50 rows per query.
- Polymarket intelligence
- Nansen CLI queries
- On-chain wallet flows
- Prediction market research
- Trader behavior signals
Nansen Polymarket Deep Dive by the numbers
- 357 all-time installs (skills.sh)
- +3 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #48 of 479 Web3 & Blockchain skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nansen-ai/nansen-cli --skill nansen-polymarket-deep-diveAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 357 |
|---|---|
| repo stars | ★ 127 |
| Last updated | August 4, 2026 |
| Repository | nansen-ai/nansen-cli ↗ |
How do you analyze one Polymarket with Nansen CLI?
Pull Nansen CLI on-chain and Polymarket signals to research prediction-market positioning, wallet flows, and trader behavior before strategy or product decisions.
Who is it for?
Developers or quant engineers with Nansen API access who need structured on-chain Polymarket research before building trading or analytics tooling.
Skip if: Users without nansen CLI and NANSEN_API_KEY, broad market screening without a market_id, or non-Polymarket blockchain research.
When should I use this skill?
User provides or requests analysis of a specific Polymarket market_id with OHLCV, orderbook, holders, trades, or PnL via Nansen CLI.
What you get
OHLCV candles, orderbook bids and asks, top-holder and position tables, recent trades, and per-wallet PnL leaderboard for one market_id.
- OHLCV and orderbook snapshots
- Holder and position tables
- Trade history and PnL leaderboard
By the numbers
- Documents 6 nansen research pm CLI commands per market
- Default limits of 20–50 rows per query depending on subcommand
Files
Prediction Market Deep Dive
Answers: "What's happening in this specific market? Who holds it, who's trading it?"
Use market_id from the screener (nansen-prediction-market skill).
MID=<market_id>
nansen research pm ohlcv --market-id $MID --sort period_start:desc --limit 50
# → period_start, open, high, low, close, volume
nansen research pm orderbook --market-id $MID
# → bids[], asks[] with price and size
nansen research pm top-holders --market-id $MID --limit 20
# → address, side, position_size, avg_entry_price, current_price, unrealized_pnl_usd
nansen research pm position-detail --market-id $MID --limit 20
# → address, side, size, avg_entry_price, current_price, pnl
nansen research pm trades-by-market --market-id $MID --limit 20
# → timestamp, buyer, seller, taker_action, side, size, price, usdc_value
nansen research pm pnl-by-market --market-id $MID --limit 20
# → address, side_held, net_buy_cost_usd, unrealized_value_usd, total_pnl_usdNotes:
--market-idis a numeric ID from the screener, not a slug.- Works with any market ID regardless of status (active or closed/resolved).
- All addresses are Polygon (EVM).
Related skills
How it compares
Use nansen-polymarket-deep-dive after market screening when you need per-market holder, trade, and PnL detail rather than broad screener lists alone.
FAQ
What do you need before running nansen-polymarket-deep-dive?
nansen-polymarket-deep-dive requires the nansen CLI binary, NANSEN_API_KEY, and a numeric market_id from the nansen-prediction-market screener skill—not a market slug.
Which Polymarket data does nansen-polymarket-deep-dive return?
nansen-polymarket-deep-dive chains six commands: OHLCV candles, orderbook bids and asks, top holders, position detail, trades-by-market, and PnL leaderboard rows for Polygon addresses.