โ† All skills
Tencent SkillHub ยท Developer Tools

Zapper Api

Query DeFi portfolios, token holdings, NFTs, transactions, and prices via Zapper API. Supports 50+ chains. Use when user asks about wallet balances, DeFi positions, NFT collections, token prices, or transaction history.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Query DeFi portfolios, token holdings, NFTs, transactions, and prices via Zapper API. Supports 50+ chains. Use when user asks about wallet balances, DeFi positions, NFT collections, token prices, or transaction history.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/API.md, scripts/zapper.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Zapper API

Query DeFi portfolios, NFTs, and transactions across 50+ chains using Zapper's GraphQL API.

Setup

Get API key from Zapper Dashboard (free tier available) Configure in ~/.config/zapper/addresses.json: { "apiKey": "your-api-key", "wallets": [ {"label": "Main", "address": "0x..."}, {"label": "DeFi", "address": "0x..."} ] } Or set environment variable: export ZAPPER_API_KEY="your-api-key"

Commands

CommandDescriptionExampleportfolio <address>Token + DeFi totalszapper.py portfolio 0x123...tokens <address>Detailed token holdingszapper.py tokens 0x123...apps <address>DeFi positions (LPs, lending, staking)zapper.py apps 0x123...nfts <address>NFT holdings by valuezapper.py nfts 0x123...tx <address>Recent transactions (30 days)zapper.py tx 0x123...price <symbol>Token price lookupzapper.py price ETHclaimables <address>Unclaimed rewardszapper.py claimables 0x123...configShow configurationzapper.py config

Options

FlagCommandsDescription--24hportfolio, tokensShow 24h price changes--shortportfolioOutput only total value--per-walletportfolioShow each configured wallet separately--jsonallOutput raw JSON--limit NmostMax items to display

Usage

# Portfolio summary python3 scripts/zapper.py portfolio 0xADDRESS # With 24h price changes python3 scripts/zapper.py portfolio 0xADDRESS --24h # Just total value python3 scripts/zapper.py portfolio 0xADDRESS --short # Per-wallet breakdown python3 scripts/zapper.py portfolio --per-wallet # Token holdings with prices python3 scripts/zapper.py tokens 0xADDRESS --24h # DeFi positions python3 scripts/zapper.py apps 0xADDRESS # NFT holdings python3 scripts/zapper.py nfts 0xADDRESS # Recent transactions python3 scripts/zapper.py tx 0xADDRESS # Token price python3 scripts/zapper.py price ETH # Unclaimed rewards python3 scripts/zapper.py claimables 0xADDRESS # JSON output python3 scripts/zapper.py portfolio 0xADDRESS --json

Wallet Labels

Use configured wallet labels instead of addresses: python3 scripts/zapper.py portfolio "Main" python3 scripts/zapper.py tokens "DeFi"

Supported Tokens (price command)

ETH, WETH, USDC, USDT, DAI, WBTC, LINK, UNI, AAVE, MKR

Supported Chains

Ethereum, Base, Arbitrum, Optimism, Polygon, Solana, BNB Chain, Avalanche, zkSync, Linea, Scroll, Blast, and 40+ more.

Notes

Free tier API key available at zapper.xyz/developers Rate limits apply - avoid rapid repeated requests NFT valuations based on floor prices Transaction history limited to 30 days

References

API.md - GraphQL query examples Zapper Docs - Official API documentation

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/API.md Docs
  • scripts/zapper.py Scripts