Back to Registry
View Author Profile
Official Verified
Whatsonchain
Skill by chicocifrado
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/chicocifrado/whatsonchainOr
whatsonchain
Slug: whatsonchain
Version: 1.0.0
Description
Access WhatsOnChain API for BSV/BTC blockchain data via REST calls. Manual key setup only, no automation.
Features
- BSV mainnet and testnet data
- BTC explorer data
- Network info (difficulty, blocks, chainwork)
- Mempool statistics
- Block headers and stats
- Transaction details
- Address activity
- Inscriptions listing
Security
- Manual only - No automation or credential extraction
- No passwords - API keys only (
mainnet_xx) - No ~/.bashrc - Use
~/.whatsonchain.conf
API Endpoints
| Endpoint | Description | Example |
|---|---|---|
/chain/info | Network info | bsv/main/chain/info |
/mempool/info | Mempool stats | bsv/main/mempool/info |
/block/headers | Last 10 block headers | bsv/main/block/headers |
/block/height/{height}/stats | Block stats | bsv/main/block/height/942402/stats |
/transactions/{txid} | Transaction details | bsv/main/transactions/{txid} |
/addresses/{addr}/info | Address activity | bsv/main/addresses/{addr}/info |
/inscriptions | Inscription listing | bsv/main/inscriptions |
Authentication
- Free tier: 3 requests/second (no API key required)
- Premium: Teranode platform API key
- Header:
Authorization: mainnet_yourapikey
Credentials Note:
- The API key (
WO_API_KEY) is optional for free-tier usage - Export the key for premium features:
export WO_API_KEY="mainnet_yourapikey" - Store in
~/.whatsonchain.confif preferred - No OAuth credentials or passwords are required
- Keys are plain text and stored locally
- Free tier allows 3 requests/second without any key
- Premium tier increases rate limits via API key
Setup
- Create account: https://platform.teranode.group
- Get API key: https://platform.teranode.group/api-keys
- Create project: https://platform.teranode.group/projects
- Move API key to project (optional)
- Export API key for premium usage (optional):
export WO_API_KEY="mainnet_yourapikey"
Usage
# Network info (free tier - no key required)
curl -s "https://api.whatsonchain.com/v1/bsv/main/chain/info"
# Mempool (free tier)
curl -s "https://api.whatsonchain.com/v1/bsv/main/mempool/info"
# Block stats (free tier)
curl -s "https://api.whatsonchain.com/v1/bsv/main/block/height/942402/stats"
# Transaction (free tier)
curl -s "https://api.whatsonchain.com/v1/bsv/main/transactions/{txid}"
# With API key (premium - optional)
curl -s -H "Authorization: mainnet_yourapikey" \
"https://api.whatsonchain.com/v1/bsv/main/chain/info"
Documentation
Changelog
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-chicocifrado-whatsonchain": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.