← 返回 Skills 市场
ianalloway

Nft Tracker

作者 ianalloway · GitHub ↗ · v0.1.0
cross-platform ✓ 安全检测通过
717
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install nft-tracker
功能描述
Track Ethereum NFT collections' floor prices, volumes, owners, and recent sales including BAYC, MAYC, CryptoPunks via Reservoir and OpenSea APIs.
使用说明 (SKILL.md)

NFT Price Tracker

Track NFT collection stats, floor prices, and recent sales using free APIs.

Free APIs (No Key Required)

Reservoir API (Recommended)

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"]}'

Popular Collection Slugs

  • boredapeyachtclub - Bored Ape Yacht Club (BAYC)
  • mutant-ape-yacht-club - Mutant Ape Yacht Club (MAYC)
  • cryptopunks - CryptoPunks
  • azuki - Azuki
  • pudgypenguins - Pudgy Penguins
  • doodles-official - Doodles
  • clonex - CloneX

Collection Stats

Get 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
}'

Recent Sales

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:

  • BAYC: 0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d
  • MAYC: 0x60e4d786628fea6478f785a6d7e704777c86a7c6
  • CryptoPunks: 0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb

Floor Price History

Get 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}'

Top Collections

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"]}'

Token Lookup

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}'

Price Alerts (Script Example)

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 \x3C $THRESHOLD" | bc -l) )); then
  echo "ALERT: $COLLECTION floor is $FLOOR ETH (below $THRESHOLD ETH)"
fi

OpenSea API (With Key)

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 '.'

Tips

  • Reservoir API is free and doesn't require authentication for basic queries
  • Rate limits apply - cache responses when possible
  • Prices are in ETH unless specified otherwise
  • Use contract addresses for precise lookups, slugs for convenience
安全使用建议
This skill is an instruction-only collection of curl+jq examples against Reservoir and OpenSea and appears to do what it claims. Before installing or using it: (1) note that OpenSea API usage is optional — only provide an OPENSEA_API_KEY if you plan to call the examples that require it; prefer a scoped/restricted key and avoid reusing high-privilege credentials; (2) be aware the skill performs outbound requests to reservoir.tools and api.opensea.io (so data you request is sent to those services); (3) ensure your runtime has curl, jq (and bc if you use the alert script); (4) confirm the skill source is trustworthy since the published homepage points to OpenSea docs but the skill's source is unknown; and (5) if you need stronger guarantees, request that the publisher update the registry metadata to mark OPENSEA_API_KEY as optional to avoid confusion.
功能分析
Type: OpenClaw Skill Name: nft-tracker Version: 0.1.0 The skill bundle is benign. It provides examples and instructions for tracking NFT collection data using legitimate APIs (Reservoir and OpenSea). The `SKILL.md` file defines standard `curl` and `jq` binaries as requirements and transparently requests an `OPENSEA_API_KEY` for authenticated OpenSea API calls. All network requests target known NFT data providers, and the scripts only parse and display data, without any evidence of data exfiltration, unauthorized execution, persistence mechanisms, or prompt injection attempts against the agent.
能力评估
Purpose & Capability
The name/description (track NFT collections, floor prices, sales) matches the actual instructions: curl queries against Reservoir and optional OpenSea endpoints and jq parsing. Required binaries (curl, jq) are appropriate for the provided commands.
Instruction Scope
SKILL.md is limited to running curl requests against reservoir.tools and api.opensea.io and parsing with jq. It does not instruct the agent to read arbitrary local files, system configuration, or transmit data to unrelated endpoints. Example scripts do call bc for numeric comparison, which is a minor external dependency.
Install Mechanism
There is no install spec and no code files — the skill is instruction-only. That minimizes on-disk persistence and installation risk.
Credentials
SKILL.md includes an OpenSea API key example and metadata declaring an OPENSEA_API_KEY credential, but the registry metadata shown to you lists 'Required env vars: none' and 'Primary credential: none'. This mismatch suggests the OpenSea key is optional (only needed for some OpenSea endpoints) — which is reasonable — but the registry should clearly mark it as optional. No other unrelated credentials are requested.
Persistence & Privilege
The skill does not request always:true, does not install persistent agents or alter other skills, and is user-invocable only. It does make outbound network calls when used, which is expected for its purpose.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install nft-tracker
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /nft-tracker 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
- Initial release of nft-tracker skill. - Track NFT collection prices, floor prices, sales data, and stats for major Ethereum collections. - Easy bash and curl commands to fetch data from Reservoir API (no key required) and OpenSea API (with key). - Supports popular collections like BAYC, MAYC, CryptoPunks, Azuki, Pudgy Penguins, and more. - Includes scripts for price alerts and example queries for floor history, recent sales, top collections, and single token lookup. - Simple setup instructions and metadata for API integration.
元数据
Slug nft-tracker
版本 0.1.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

Nft Tracker 是什么?

Track Ethereum NFT collections' floor prices, volumes, owners, and recent sales including BAYC, MAYC, CryptoPunks via Reservoir and OpenSea APIs. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 717 次。

如何安装 Nft Tracker?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install nft-tracker」即可一键安装,无需额外配置。

Nft Tracker 是免费的吗?

是的,Nft Tracker 完全免费(开源免费),可自由下载、安装和使用。

Nft Tracker 支持哪些平台?

Nft Tracker 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Nft Tracker?

由 ianalloway(@ianalloway)开发并维护,当前版本 v0.1.0。

💬 留言讨论