Embed, SDK, WordPress, API โ pick your integration. All powered by 34+ chain real-time data.
Drop this anywhere โ works on any HTML site. Shadow DOM isolation means zero style conflicts.
<script src="https://cryptopulse.uno/embed/cryptopulse.js"></script><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>npm install @cryptopulse/sdkESM (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.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]# 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..."| Endpoint | Method | Auth | Description |
|---|---|---|---|
| /api/whales | GET | Optional | Whale movements (chain, period, limit) |
| /api/wallet/:address | GET | Optional | Wallet lookup with multichain support |
| /api/chains | GET | No | List all 34+ supported chains |
| /api/market | GET | No | Market cap, volume, fear/greed, prices |
| /api/dex | GET | Optional | DEX swaps and trending tokens |
| /api/roast | POST | Optional | AI wallet roast with degen score |
| /api/narrator | POST | Optional | AI plain-English wallet summary |
| /api/smart-money | GET | Optional | Smart money scoring (0-100) |
| /api/bot/status | GET | No | Trading bot performance (public) |
| /api/bot/signals | GET | Required | Live trading signals (Trader+) |
| /api/keys | GET/POST | Required | API key management |
| /api/giveaway | GET/POST | No | Giveaway status & entry |
| /api/referral | GET | Required | Referral stats and link |
Free tier: 10 lookups/day ยท Pro: unlimited ยท See plans