一键导入
nft-tracker
Track NFT collection prices, floor prices, and sales data. Supports Ethereum collections including BAYC, MAYC, CryptoPunks, and more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Track NFT collection prices, floor prices, and sales data. Supports Ethereum collections including BAYC, MAYC, CryptoPunks, and more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Track your sports bets in a local CSV journal. Calculate ROI, CLV, win rate by sport/bet-type, and identify where you're actually making money.
Build optimal Daily Fantasy Sports lineups for DraftKings and FanDuel. Maximize projected points under salary cap constraints for NBA, NFL, and MLB slates.
Analyze market sentiment for stocks and crypto using Reddit, news headlines, and fear/greed indicators. Get a quick read on crowd psychology before trading.
Track hot and cold streaks for sports teams and players. Identify momentum patterns, ATS performance trends, and regression-to-mean signals.
Calculate portfolio rebalancing trades to hit target allocations. Supports stocks, crypto, and mixed portfolios.
Scan code and dependencies for security vulnerabilities. Check npm audit, pip safety, and common security issues.
| name | nft-tracker |
| description | Track NFT collection prices, floor prices, and sales data. Supports Ethereum collections including BAYC, MAYC, CryptoPunks, and more. |
| homepage | https://docs.opensea.io/reference/api-overview |
| metadata | {"openclaw":{"emoji":"🖼️","requires":{"bins":["curl","jq"]},"credentials":[{"id":"opensea-api-key","name":"OpenSea API Key","description":"API key from https://docs.opensea.io/reference/api-keys","env":"OPENSEA_API_KEY"}]}} |
Track NFT collection stats, floor prices, and recent sales using free APIs.
Get collection floor price:
curl -s "https://api.reservoir.tools/collections/v6?slug=boredapeyachtclub" | jq '.collections[0] | {name, floorAsk: .floorAsk.price.amount.native, volume24h: .volume["1day"], volumeChange: .volumeChange["1day"]}'
boredapeyachtclub - Bored Ape Yacht Club (BAYC)mutant-ape-yacht-club - Mutant Ape Yacht Club (MAYC)cryptopunks - CryptoPunksazuki - Azukipudgypenguins - Pudgy Penguinsdoodles-official - Doodlesclonex - CloneXGet detailed collection stats:
curl -s "https://api.reservoir.tools/collections/v6?slug=mutant-ape-yacht-club" | jq '.collections[0] | {
name: .name,
floor_eth: .floorAsk.price.amount.native,
floor_usd: .floorAsk.price.amount.usd,
volume_24h: .volume["1day"],
volume_7d: .volume["7day"],
volume_30d: .volume["30day"],
owners: .ownerCount,
supply: .tokenCount
}'
Get recent sales for a collection:
curl -s "https://api.reservoir.tools/sales/v6?collection=0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d&limit=10" | jq '.sales[] | {token_id: .token.tokenId, price_eth: .price.amount.native, timestamp: .timestamp, marketplace: .orderSource}'
Contract addresses:
0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d0x60e4d786628fea6478f785a6d7e704777c86a7c60xb47e3cd837ddf8e4c57f05d70ab865de6e193bbbGet floor price over time:
curl -s "https://api.reservoir.tools/collections/daily-volumes/v1?collection=0x60e4d786628fea6478f785a6d7e704777c86a7c6&limit=30" | jq '.[] | {date: .timestamp, floor: .floorAskPrice, volume: .volume}'
Get top collections by volume:
curl -s "https://api.reservoir.tools/collections/v6?sortBy=1DayVolume&limit=10" | jq '.collections[] | {name: .name, floor: .floorAsk.price.amount.native, volume_24h: .volume["1day"]}'
Get details for a specific NFT:
# MAYC #1234
curl -s "https://api.reservoir.tools/tokens/v7?tokens=0x60e4d786628fea6478f785a6d7e704777c86a7c6:1234" | jq '.tokens[0] | {name: .token.name, image: .token.image, lastSale: .token.lastSale.price.amount.native, owner: .token.owner}'
Monitor floor price and alert when below threshold:
#!/bin/bash
COLLECTION="mutant-ape-yacht-club"
THRESHOLD=5 # ETH
FLOOR=$(curl -s "https://api.reservoir.tools/collections/v6?slug=$COLLECTION" | jq -r '.collections[0].floorAsk.price.amount.native')
if (( $(echo "$FLOOR < $THRESHOLD" | bc -l) )); then
echo "ALERT: $COLLECTION floor is $FLOOR ETH (below $THRESHOLD ETH)"
fi
If you have an OpenSea API key:
curl -s "https://api.opensea.io/api/v2/collections/mutant-ape-yacht-club/stats" \
-H "X-API-KEY: $OPENSEA_API_KEY" | jq '.'