โ† Back to Dashboard๐Ÿ‹ CryptoPulse Developer Hub

Add Whale Intelligence to Anything

Embed, SDK, WordPress, API โ€” pick your integration. All powered by 34+ chain real-time data.

๐Ÿ“ฆ npm SDK๐Ÿ™ GitHub๐Ÿ“„ API Docs๐Ÿ”ง WordPress๐Ÿ’ฌ Telegram๐Ÿ“ฅ WP Plugin ZIP

1One-Line Embed Widget

Drop this anywhere โ€” works on any HTML site. Shadow DOM isolation means zero style conflicts.

<script src="https://cryptopulse.uno/embed/cryptopulse.js"></script>

2Embed with Configuration

<script>
window.CryptoPulseConfig = {
  theme: "dark",         // "dark" or "light"
  limit: 10,             // 1-50 whale movements
  chain: "ethereum",     // "all", "ethereum", "polygon", etc.
  position: "inline",    // "inline", "bottom-right", "bottom-left"
  refresh: 60,           // auto-refresh seconds (0 = off)
  apiKey: "your-key"     // optional, increases rate limit
};
</script>
<script src="https://cryptopulse.uno/embed/cryptopulse.js"></script>

3npm SDK (TypeScript)

npm install @cryptopulse/sdk

ESM (recommended โ€” use "type": "module" in package.json):

import CryptoPulse from '@cryptopulse/sdk';
const cp = new CryptoPulse({ apiKey: 'your-key' });

// ๐Ÿ‹ Whale movements
const whales = await cp.getWhales({ chain: 'ethereum', period: '24h' });

// ๐Ÿ” Wallet lookup (scans all 34 chains)
const wallet = await cp.getWallet('0xd8dA...96045', { multichain: true });

// ๐Ÿ“Š Market overview
const market = await cp.getMarket();

// ๐Ÿ”„ DEX swaps & trending tokens
const dex = await cp.getDex({ mode: 'trending', period: '7d' });

// ๐Ÿค– Trading bot signals (Trader+ plan)
const signals = await cp.getBotSignals();

// ๐Ÿ”ฅ AI Roast
const roast = await cp.roastWallet('0x...');

// ๐Ÿง  Smart money score
const score = await cp.getSmartMoney('0x...');

CommonJS ("type": "commonjs" or no type field):

const { CryptoPulse } = require('@cryptopulse/sdk');
const cp = new CryptoPulse({ apiKey: 'your-key' });

// Same methods available: getWhales, getWallet, getMarket, getDex, getBotSignals, etc.

4WordPress Plugin

Download ZIP โ†’ Upload in WP Admin โ†’ Activate โ†’ Settings โ†’ CryptoPulse

[cryptopulse_whales]
[cryptopulse_whales chain="ethereum" limit="10" period="7d" theme="dark"]
[cryptopulse_wallet]
[cryptopulse_market]
[cryptopulse_dex chain="polygon" period="24h"]
[cryptopulse_bot]
๐Ÿ‹ Whales
Live whale feed with chain/period filters
๐Ÿ” Wallet
Interactive wallet lookup with multichain scan
๐Ÿ“Š Market
Market cap, volume, fear/greed, top prices
๐Ÿ”„ DEX
DEX swap feed with token & wallet links
๐Ÿค– Bot
Alpha Bot performance card with live stats
๐Ÿ”ง Widget
Sidebar widget for WP theme areas

5REST API (curl)

# Whale movements
curl "https://cryptopulse.uno/api/whales?chain=ethereum&limit=10&period=24h"

# Wallet lookup (multichain)
curl "https://cryptopulse.uno/api/wallet/0xd8dA...96045?multichain=true"

# Market overview
curl "https://cryptopulse.uno/api/market"

# DEX swaps
curl "https://cryptopulse.uno/api/dex?mode=swaps&chain=polygon&period=24h"

# Bot status (public)
curl "https://cryptopulse.uno/api/bot/status"

# Trading signals (needs API key)
curl -H "x-api-key: YOUR_KEY" "https://cryptopulse.uno/api/bot/signals"

# AI Roast
curl -X POST -H "Content-Type: application/json" \
  -d '{"address":"0x..."}' "https://cryptopulse.uno/api/roast"

# Smart Money Score
curl "https://cryptopulse.uno/api/smart-money?address=0x..."

6Platform Plugins

๐Ÿ›๏ธ Shopify
Theme App Extension block
๐ŸŽจ Webflow
Custom code embed + Designer Extension
๐Ÿ”ต Bubble
Plugin element + API Connector
โšก Wix
Custom Element + Velo code
๐Ÿ‘ป Ghost / Hugo
Use embed script in code injection
โš›๏ธ React / Next.js
Use npm SDK directly

7API Endpoints

EndpointMethodAuthDescription
/api/whalesGETOptionalWhale movements (chain, period, limit)
/api/wallet/:addressGETOptionalWallet lookup with multichain support
/api/chainsGETNoList all 34+ supported chains
/api/marketGETNoMarket cap, volume, fear/greed, prices
/api/dexGETOptionalDEX swaps and trending tokens
/api/roastPOSTOptionalAI wallet roast with degen score
/api/narratorPOSTOptionalAI plain-English wallet summary
/api/smart-moneyGETOptionalSmart money scoring (0-100)
/api/bot/statusGETNoTrading bot performance (public)
/api/bot/signalsGETRequiredLive trading signals (Trader+)
/api/keysGET/POSTRequiredAPI key management
/api/giveawayGET/POSTNoGiveaway status & entry
/api/referralGETRequiredReferral stats and link
Get Your API Key โ†’

Free tier: 10 lookups/day ยท Pro: unlimited ยท See plans

GitHubnpmTwitterTelegram