skills/polymer-pay-nansen/SKILL.md
USE THIS SKILL WHEN: the user wants smart money analytics, whale tracking, token net flows, DEX trades by labeled wallets, or aggregate smart money holdings via Nansen.
npx skillsauth add polymerdao/pay-apis polymer-pay-nansenInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Nansen provides premium onchain analytics — smart money tracking, whale movements, and token flows — as a pay-per-use API through the Polymer Pay proxy. Each request is paid individually with no Nansen account or API key required. Only the three smart money endpoints below are available via x402; other Nansen API endpoints require a direct Nansen subscription.
All requests route through the Polymer Pay proxy. Include your Polymer Pay API key in every request:
{
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
}
}
Base URL: https://pay.polymerlabs.org/proxy/https/api.nansen.ai
To get an Polymer Pay API key, sign up at https://my.pay.polymerlabs.org/dashboard/api-keys.
Retrieve token net flow data aggregated across labeled smart money wallets. Shows which tokens smart money is accumulating or dumping over 1h, 24h, 7d, and 30d timeframes.
Pricing: $0.05
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/api.nansen.ai/api/v1/smart-money/netflow",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"chains": ["ethereum"],
"filters": {
"include_native_tokens": true,
"include_stablecoins": false
},
"pagination": {
"page": 1,
"items_per_page": 10
},
"order_by": [
{
"field": "net_flow_24h_usd",
"direction": "DESC"
}
]
}
}
Response: JSON array of tokens with net flow amounts in USD across timeframes (1h, 24h, 7d, 30d), number of smart money wallets involved, and token metadata.
Get real-time DEX trades executed by Nansen-labeled smart money wallets. Useful for spotting what whales are trading right now.
Pricing: $0.05
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/api.nansen.ai/api/v1/smart-money/dex-trades",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"chains": ["ethereum"],
"filters": {
"include_smart_money_labels": ["Smart Money"]
},
"pagination": {
"page": 1,
"items_per_page": 10
}
}
}
Response: JSON array of recent DEX trades with wallet label, token pair, trade size in USD, DEX used, transaction hash, and timestamp.
View aggregate token holdings across all Nansen-labeled smart money wallets. Shows what the smart money is currently holding.
Pricing: $0.05
{
"method": "POST",
"url": "https://pay.polymerlabs.org/proxy/https/api.nansen.ai/api/v1/smart-money/holdings",
"headers": {
"Content-Type": "application/json",
"x-polymer-pay-api-key": "{{POLYMER_PAY_API_KEY}}"
},
"body": {
"chains": ["ethereum"],
"filters": {
"include_stablecoins": false
},
"pagination": {
"page": 1,
"items_per_page": 10
}
}
}
Response: JSON array of tokens held by smart money wallets with aggregate USD value, number of holders, percentage change over time, and token metadata.
include_stablecoins: false to focus on tokens with alpha potential
rather than stable parking.net_flow_24h_usd descending to surface the highest-conviction moves first.["ethereum"], ["solana"], or both in the chains array depending on which
ecosystem you need.development
USE THIS SKILL WHEN: the user wants to use Z.ai's GLM models for chat, translation, image generation, video generation, or web search. Z.ai provides GLM-4.5 and GLM-4.6 with advanced reasoning and agentic capabilities.
development
USE THIS SKILL WHEN: the user wants a quick single-page scrape to markdown or a webpage screenshot. Provides lightweight web scraping and screenshots via x402engine through the Polymer Pay proxy.
data-ai
USE THIS SKILL WHEN: the user wants to generate AI images with FLUX models or create text-in-image with Ideogram. Provides pay-per-use image generation via x402engine through the Polymer Pay proxy.
data-ai
USE THIS SKILL WHEN: the user wants wallet balances, transactions, PnL, ENS resolution, token prices, or transaction simulation. Provides pay-per-use blockchain operations via x402engine through the Polymer Pay proxy.