nft-trackerTrack Ethereum NFT collections' floor prices, volumes, owners, and recent sales including BAYC, MAYC, CryptoPunks via Reservoir and OpenSea APIs.
Install via ClawdBot CLI:
clawdbot install ianalloway/nft-trackerTrack 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 '.'
AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Connect Claude to Clawdbot instantly and keep it connected 24/7. Run after setup to link your subscription, then auto-refreshes tokens forever.
ERC-8004 Trustless Agents - Register, discover, and build reputation for AI agents on Ethereum. Use when registering agents on-chain, querying agent registries, giving/receiving reputation feedback, or interacting with the AI agent trust layer.
Autonomous crypto trading on Base via Bankr. Use for trading tokens, monitoring launches, executing strategies, or managing a trading portfolio. Triggers on "trade", "buy", "sell", "launch", "snipe", "profit", "PnL", "portfolio balance", or any crypto trading task on Base.
Deploy ERC20 tokens on Base using Clanker SDK. Create tokens with built-in Uniswap V4 liquidity pools. Supports Base mainnet and Sepolia testnet. Requires PRIVATE_KEY in config.
Query DeFi portfolio data across 50+ chains via Zapper's GraphQL API. Use when the user wants to check wallet balances, DeFi positions, NFT holdings, token prices, or transaction history. Supports Base, Ethereum, Polygon, Arbitrum, Optimism, and more. Requires ZAPPER_API_KEY.
Interact with Solana blockchain via Helius APIs. Create/manage wallets, check balances (SOL + tokens), send transactions, swap tokens via Jupiter, and monitor addresses. Use for any Solana blockchain operation, crypto wallet management, token transfers, DeFi swaps, or portfolio tracking.