Stablecoin Depeg Monitor — Live Peg Deviation (50+ Coins) avatar

Stablecoin Depeg Monitor — Live Peg Deviation (50+ Coins)

Pricing

$1.00 / 1,000 stablecoin trackeds

Go to Apify Store
Stablecoin Depeg Monitor — Live Peg Deviation (50+ Coins)

Stablecoin Depeg Monitor — Live Peg Deviation (50+ Coins)

Real-time peg deviation in basis points for 50+ stablecoins (USDT, USDC, DAI, FDUSD, USDe, sUSD, GUSD, …). Configurable alert threshold. Catch the next UST/USDR moment early. PPE $0.001/stablecoin.

Pricing

$1.00 / 1,000 stablecoin trackeds

Rating

0.0

(0)

Developer

Hojun Lee

Hojun Lee

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

15 days ago

Last modified

Share

Stablecoin Depeg Monitor

Real-time peg deviation tracking for 380+ stablecoins (USDT, USDC, USDe, DAI, sUSDe, FRAX, PYUSD, FDUSD, RLUSD, USDS, and more). Get pinged when any stable wobbles. DefiLlama-powered. No API key required.


What It Does

Pulls live aggregated price and circulating supply for every tracked stablecoin and computes basis-point deviation from peg. Each row includes a severity label so you can wire alerts at any threshold:

SeverityRangeMeaning
NORMAL< 10 bpsWithin market microstructure noise
WATCH10–50 bpsSlightly off — monitor closely
DEPEG50–200 bpsClear deviation — derisking signal
CRITICAL> 200 bpsActive depeg event

Why This Matters

Stablecoins are the plumbing of crypto — every DeFi pool, every CEX pair, every yield strategy assumes they hold peg. When they don't, cascades happen fast:

  • UST depeg (May 2022) wiped out $40B in 72 hours
  • USDC depeg (Mar 2023, SVB) dropped to $0.87 in hours, took $3B+ of DeFi TVL with it
  • USDe small wobbles in 2024-25 routinely preceded mNAV widening and Ethena negative basis

Catching deviation at 25 bps (0.25%) gives you minutes-to-hours to exit before the market notices. This Actor automates that watch.


Input

FieldTypeDefaultDescription
symbolsstring[][]Filter to specific symbols (USDT, USDC, USDe, …). Empty = all stables matching other filters
minCirculatingUsdinteger10000000Skip below this circulating supply (default $10M excludes micro tokens)
minDeviationBpsinteger0Only return rows above this
pegTypestringpeggedUSDpeggedUSD, peggedEUR, peggedKRW, peggedJPY, all
sortBystringdeviation_descdeviation_desc, circulating_desc, symbol_asc
alertDeviationBpsinteger0Send Telegram alert when any |deviation| crosses this in bps
telegramBotTokenstring (secret)Bot token for alerts
telegramChatIdstringChat ID for alerts

Example: USD stables only, alert on 25 bps

{
"pegType": "peggedUSD",
"minCirculatingUsd": 100000000,
"alertDeviationBps": 25,
"telegramBotToken": "<token>",
"telegramChatId": "<chat>"
}

Example: Just the top 5 by supply

{
"symbols": ["USDT", "USDC", "USDe", "DAI", "USDS"],
"sortBy": "circulating_desc"
}

Output

One row per stablecoin:

{
"symbol": "USDe",
"name": "Ethena USDe",
"gecko_id": "ethena-usde",
"peg_type": "peggedUSD",
"peg_mechanism": "algorithmic",
"price_usd": 0.9987,
"deviation_bps": -13.04,
"deviation_pct": -0.1304,
"severity": "WATCH",
"is_above_peg": false,
"circulating_usd": 4492720834,
"chains_count": 12,
"chains_deployed": ["Ethereum", "Arbitrum", "Optimism", "Base", "Polygon", "BSC", "Solana", "Avalanche", "Linea", "zkSync"],
"timestamp": "2026-06-02T14:00:00+00:00"
}

Pricing

Pay-Per-Event (PPE):

  • $0.001 per stablecoin returned

Examples:

  • Top 50 USD stables: $0.05/run
  • All 380 (pegType: all, no supply filter): $0.38/run

Use Cases

24/7 depeg alert — Run every 5 min, alert at 25 bps:

curl -X POST "https://api.apify.com/v2/acts/gochujang~stablecoin-depeg-monitor/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"alertDeviationBps": 25, "telegramBotToken": "<token>", "telegramChatId": "<chat>"}'

DeFi risk dashboard — Pull all > $100M stables into a watchlist for your trading bot to monitor LP pool exposure.


Data Source

DefiLlama Stablecoins — aggregates price + circulating supply across CEX, DEX, and on-chain oracles. 380+ stables across 60+ chains, updated every ~5 min.




🎬 Live Sample Run

A real run of this actor with default-ish inputs, executed on 2026-06-10:

FieldValue
Items in dataset14
Dataset (JSON)https://api.apify.com/v2/datasets/yRLHTa2EM5BCgNsMy/items?clean=1&format=json
Dataset (CSV)https://api.apify.com/v2/datasets/yRLHTa2EM5BCgNsMy/items?clean=1&format=csv
Run summary (KVS)https://api.apify.com/v2/key-value-stores/06UMPsiQcXiIefGwl/records/SUMMARY
Run detailshttps://api.apify.com/v2/actor-runs/xDJNkY7aFVQAp8Q3n

Try it now: pop any of the dataset URLs in your browser to see live output, or hit the API endpoints from your code.

Want to reproduce? Click Try Actor on the Apify Store page and use the input defaults shown above.

Feedback

If this Actor saves you time, a quick review helps others find it: Leave a review on Apify Store