skills$openclaw/zapper
spirosrap9.4k

by spirosrap

zapper – OpenClaw Skill

zapper is an OpenClaw Skills integration for coding workflows. 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.

9.4k stars6.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namezapper
descriptionQuery 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. OpenClaw Skills integration.
ownerspirosrap
repositoryspirosrap/zapper
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @spirosrap/zapper
last updatedFeb 7, 2026

Maintainer

spirosrap

spirosrap

Maintains zapper in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
api.md
3.8 KB
scripts
zapper.sh
12.8 KB
_meta.json
267 B
SKILL.md
2.7 KB
SKILL.md

name: zapper description: 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. metadata: {"clawdbot":{"emoji":"⚡","homepage":"https://zapper.xyz","requires":{"bins":["curl","jq","python3"]}}}

Zapper Skill

Query DeFi portfolio data across 50+ chains via Zapper's GraphQL API.

Quick Start

Setup

Get your API key from Zapper Dashboard (free tier available):

mkdir -p ~/.clawdbot/skills/zapper
cat > ~/.clawdbot/skills/zapper/config.json << 'EOF'
{
  "apiKey": "YOUR_ZAPPER_API_KEY"
}
EOF

Basic Usage

# Portfolio summary
scripts/zapper.sh portfolio 0x...

# Token holdings
scripts/zapper.sh tokens 0x...

# DeFi positions
scripts/zapper.sh apps 0x...

# NFT holdings
scripts/zapper.sh nfts 0x...

# Token price
scripts/zapper.sh price ETH

# Recent transactions
scripts/zapper.sh tx 0x...

# Unclaimed rewards
scripts/zapper.sh claimables 0x...

Commands

CommandDescriptionExample
portfolio <address>Token balances + totals across all chainszapper.sh portfolio 0x123...
tokens <address>Detailed token holdingszapper.sh tokens 0x123...
apps <address>DeFi positions (LPs, lending, staking)zapper.sh apps 0x123...
nfts <address>NFT holdingszapper.sh nfts 0x123...
price <symbol>Token price lookupzapper.sh price ETH
tx <address>Recent transactions (human-readable)zapper.sh tx 0x123...
claimables <address>Unclaimed rewardszapper.sh claimables 0x123...

Supported Networks

Zapper supports 50+ chains including:

  • Ethereum
  • Base
  • Polygon
  • Arbitrum
  • Optimism
  • Avalanche
  • BNB Chain
  • zkSync
  • Linea
  • Scroll
  • And more...

Use Cases

  • Portfolio tracking: Aggregate all DeFi positions across chains
  • Yield hunting: Check claimables and unclaimed rewards
  • NFT portfolio: Track NFT holdings across marketplaces
  • Transaction history: Human-readable on-chain activity
  • Token prices: Quick price lookups

API Reference

All endpoints use POST https://public.zapper.xyz/graphql with GraphQL queries.

See references/api.md for full API documentation.

Requirements

  • curl - HTTP requests
  • jq - JSON parsing
  • python3 - Formatting output
  • Zapper API key (free tier available)

Notes

  • API key is required for all endpoints
  • Rate limits apply based on your Zapper plan
  • GraphQL queries allow flexible data selection
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

- `curl` - HTTP requests - `jq` - JSON parsing - `python3` - Formatting output - Zapper API key (free tier available)

FAQ

How do I install zapper?

Run openclaw add @spirosrap/zapper in your terminal. This installs zapper into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/spirosrap/zapper. Review commits and README documentation before installing.