# anomaly.forgemesh.io — ForgeMesh Anomaly Tracker > Multi-domain real-time anomaly detection: mempool (5s polling), stablecoin depeg (1min polling), blockchain, NFT, DeFi, live aviation, and GitHub. Uses NASA-derived sequence mining to detect unusual event patterns before they're obvious. Returns a story label + score. x402 USDC micropayments on Base mainnet. ## Endpoints — Real-Time (High-Frequency Polling) GET /api/mempool-anomaly — $0.01 USDC ⚡ Poll every 5 seconds Input: ?chain=ethereum Output: { "sequence_score": 72, "story": "MEV Attack", "pending_count": 247, "gas": { "current_gwei": 45.2, "ratio_vs_median": 3.12 }, "pending_stats": { "big_swaps": 3, "whale_pending": 1 }, "peak_window": ["GAS_SPIKE", "BIG_SWAP", "MEV_SIGNAL"] } GET /api/depeg-monitor — $0.01 USDC ⚡ Poll every 1 minute Input: ?chain=ethereum Output: { "sequence_score": 55, "story": "Single Coin Drift", "overall_status": "PEG_DRIFT", "max_deviation_pct": 0.35, "coins": { "USDC": { "price": 0.9965, "deviation_pct": 0.35, "status": "PEG_DRIFT" } }, "peak_window": ["USDC_DRIFT", "PEG_DRIFT", "SPREAD_NORMAL"] } ## Endpoints — Blockchain Financial POST /api/sequence-anomaly — $0.05 USDC Input: { "domain": "financial", "chain": "ethereum", "window": "24h" } Output: { "sequence_score": 66, "story": "Supply Expansion", "novelty": "high", "peak_window": ["STABLECOIN_MINT", ...] } GET /api/sequence-anomaly/status — $0.01 USDC Output: { "status": "ok", "chains": { "ethereum": { "training_sequences": 173 } } } GET /api/whale-alerts — $0.02 USDC Input: ?chain=ethereum&hours=4 Output: { "chain": "ethereum", "alert_count": 5, "alerts": [{ "symbol": "CEX_INFLOW", "source": "Binance", "amount_eth": 150.2 }] } POST /api/token-scan — $0.03 USDC Input: { "token": "usdt", "chain": "ethereum", "window": "24h" } Output: { "sequence_score": 42, "story": "Distribution Event", "peak_window": ["CEX_INFLOW", "WHALE_BUY"] } POST /api/address-scan — $0.03 USDC Input: { "address": "0x28c6c0...", "chain": "ethereum", "window": "24h" } Output: { "sequence_score": 55, "story": "Exchange Stress", "peak_window": ["CEX_INFLOW", "WHALE_SELL"] } ## Endpoints — NFT & DeFi POST /api/nft-scan — $0.03 USDC Input: { "token": "0xbc4ca0...", "chain": "ethereum", "window": "24h" } Output: { "sequence_score": 72, "story": "Sweep Accumulation", "collection": { "name": "BAYC" }, "peak_window": ["NFT_SWEEP", "NFT_SWEEP"] } POST /api/defi-scan — $0.03 USDC Input: { "protocol": "aave_v3", "chain": "ethereum", "window": "24h" } Known protocols: uniswap_v3, uniswap_v3_r2, aave_v3, aave_v2, curve_3pool, compound_v3 Output: { "sequence_score": 61, "story": "Exchange Stress", "protocol": "aave_v3", "peak_window": [...] } ## Endpoints — Aviation GET /api/squawk-alerts — $0.02 USDC Output: { "total_tracked": 8342, "emergency_count": 2, "by_type": { "general_emergency": 1, "radio_failure": 1 }, "alerts": [...] } Squawk codes: 7700=general_emergency, 7600=radio_failure, 7500=hijack POST /api/flight-scan — $0.03 USDC Input: { "region": "north_atlantic" } Regions: north_atlantic, europe, north_america, asia_pacific, middle_east, africa, global Output: { "sequence_score": 34, "story": "Elevated Activity", "total_aircraft": 412, "peak_window": ["SQUAWK_7700", "RAPID_DESCENT"] } ## Endpoints — Creator Signals (GitHub) GET /api/trending-signal — $0.02 USDC Input: ?days=7 Output: { "sequence_score": 68, "story": "Trend Surge", "signal_count": 5, "signals": [{ "full_name": "owner/repo", "stars_per_day": 171.4 }] } POST /api/repo-scan — $0.03 USDC Input: { "repo": "vercel/ai" } Output: { "sequence_score": 44, "story": "Strong Momentum", "metrics": { "stars_per_day": 34.2, "fork_ratio": 0.18 }, "peak_window": ["HOT_REPO", "FORK_SURGE"] } ## Endpoints — GitHub Activity Watch POST /api/github-watch — $0.03 USDC Input: { "repo": "vercel/ai" } Output: { "sequence_score": 52, "story": "Merge Sprint", "total_events": 87, "unique_actors": 12, "bot_ratio": 0.15, "peak_window": ["PR_MERGE", "PR_MERGE", "COMMIT_PUSH", "MERGE_RUSH"] } ## Endpoints — Claude Feature Watch GET /api/claude-feature-watch — $0.02 USDC Input: ?days=7 Output: { "features_merged": 5, "repos_scanned": 5, "features": [{ "title": "Add streaming tool use", "repo": "anthropics/anthropic-sdk-python", "merged_at": "2026-06-23", "author": "..." }] } ## Symbol alphabets Mempool: GAS_SPIKE, GAS_SURGE, GAS_CALM, PENDING_FLOOD, PENDING_NORMAL, PENDING_DRY, BIG_SWAP, BIG_TRANSFER, CONTRACT_DEPLOY, CONTRACT_BURST, DEX_PENDING, MEV_SIGNAL, WHALE_PENDING, PRIORITY_WAR Depeg: PEG_STABLE, PEG_DRIFT, PEG_WARN, PEG_DEPEG, PEG_RECOVERY, SPREAD_NORMAL, SPREAD_WIDE, SPREAD_EXTREME, VOLUME_SPIKE, VOLUME_NORMAL, VOLUME_DRY, USDC_DRIFT, USDT_DRIFT, DAI_DRIFT, MULTI_DRIFT Financial: WHALE_BUY, WHALE_SELL, CEX_INFLOW, CEX_OUTFLOW, BRIDGE_IN, BRIDGE_OUT, DEX_SWAP, DEX_LIQUIDITY_ADD, DEX_LIQUIDITY_REMOVE, STABLECOIN_MINT, STABLECOIN_REDEEM NFT: NFT_MINT, NFT_BURN, NFT_SALE, NFT_SWEEP, NFT_WASH_TRADE Aviation: ENROUTE, SQUAWK_7700, SQUAWK_7600, SQUAWK_7500, RAPID_DESCENT, RAPID_CLIMB, HIGH_SPEED, NEAR_STALL Creator: VIRAL_REPO, HOT_REPO, EMERGING_REPO, STEADY_REPO, QUIET_REPO, FORK_SURGE, BOOKMARK_ONLY, ISSUE_FLOOD, OVERNIGHT_STAR, RAPID_GROWTH GitHub Watch: COMMIT_PUSH, COMMIT_BURST, FORCE_PUSH, ISSUE_OPEN, ISSUE_CLOSE, ISSUE_COMMENT, ISSUE_FLOOD, PR_OPEN, PR_MERGE, PR_CLOSE, PR_REVIEW, MERGE_RUSH, BRANCH_CREATE, BRANCH_DELETE, TAG_CREATE, RELEASE_PUBLISH, FORK_EVENT, STAR_EVENT, BOT_DOMINATED, SOLO_OPERATOR ## Payment - Network: Base mainnet (eip155:8453) - Receiving wallet: 0xE295B6641b32998537Ae0f8E61Babf729EAEd6E5 - Facilitator: https://x402.xyz/facilitate - Protocol: x402 — agents pay per call in USDC, no API key needed ## x402 Extensions - Bazaar: live — agent marketplace discovery with schemas - Payment identifier: live — retry-safe idempotency keys - Builder code: live (bc_4ypyymtf) - Offer receipt: live ## ForgeMesh Fleet This service is one of 11 x402 services and counting from ForgeMesh Labs, 500+ paid endpoints, from $0.001 — one wallet, no signup, atomic USDC settlement on Base. - Paid registry: POST https://x402.forgemesh.io/fleet-products ($0.05) - Paid product detail: POST https://x402.forgemesh.io/fleet-product-detail ($0.05) - Free index: https://x402.forgemesh.io/llms.txt ## Backlinks - ForgeMesh: https://forgemesh.io - Disruption Intelligence API: https://disruption.forgemesh.io - CoinOpAI Signals + Prompts: https://x402.coinopai.com - Anomaly Tracker MCP: https://github.com/forgemeshlabs/anomaly-mcp