🪙 Stablecoin Supply & Peg Monitor — Circulating & Depeg avatar

🪙 Stablecoin Supply & Peg Monitor — Circulating & Depeg

Pricing

from $25.00 / 1,000 page scrapeds

Go to Apify Store
🪙 Stablecoin Supply & Peg Monitor — Circulating & Depeg

🪙 Stablecoin Supply & Peg Monitor — Circulating & Depeg

Monitor stablecoin circulating supply, price/peg deviation, and supply changes (1d/7d/30d) by chain. For crypto desks, risk teams, and treasuries tracking de-peg and supply-contraction risk.

Pricing

from $25.00 / 1,000 page scrapeds

Rating

0.0

(0)

Developer

NexGenData

NexGenData

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Live stablecoin circulating supply, peg deviation, and 7-day supply momentum by chain — the risk signal Nansen and Messari charge a subscription for, delivered as pay-per-record JSON.

Stablecoins are the plumbing of crypto, and when the plumbing leaks — a depeg, a sudden supply contraction, a chain-level migration of liquidity — it moves fast and it moves first. This actor monitors the stablecoin universe and returns, for each coin, its circulating supply, its current price relative to peg, its recent supply change, and the number of chains it spans. For a trading desk, a treasury holding stablecoin reserves, or a risk team watching counterparty exposure, those are the four numbers that tell you whether a stablecoin is healthy, draining, or breaking.

The value is in the read you can build from it: a price that has drifted off 1.00, a circulating supply shrinking 7 days running, a coin concentrated on a single chain — each is an early warning. Pull the universe on a schedule and you have a continuously updated depeg-and-contraction dashboard without paying for a full on-chain analytics seat.

Why use this

Stablecoin health data exists on platforms like Nansen and Messari, but it comes wrapped in a subscription built for analysts clicking through dashboards, not for a pipeline that needs the numbers in JSON. You cannot easily ask those tools "give me every peggedUSD coin over $100M, sorted by 7-day supply change, as a flat file my risk model ingests every hour." This actor is exactly that: a filterable, queryable feed of the metrics that matter for stablecoin risk.

It runs pay-per-result — you pay for the coins you pull, with no seat licence and no monthly commitment. The output is flat JSON ready to drop into a warehouse, a spreadsheet, or an LLM. And it is purpose-built for the risk question rather than the explorer question: price/peg deviation and supply momentum are front-and-center fields, not metrics you have to derive by hand.

  • Depeg detection out of the box. The price field against the implied peg is the depeg signal; filter or sort on it to surface coins drifting off their target.
  • Supply momentum, not just a snapshot. pctChange7d captures whether a coin is being minted or redeemed — supply contraction is one of the cleanest leading indicators of stress.
  • Chain spread as a concentration read. chainCount tells you whether a coin's liquidity is diversified or concentrated on a single chain, which matters for both risk and redemption mechanics.

What you get

Each record returned by the actor is one stablecoin, in flat JSON:

  • name — the stablecoin's full name
  • symbol — its ticker (e.g. USDT, USDC, DAI)
  • pegType — the asset it is pegged to (peggedUSD, peggedEUR, etc.)
  • price — current price; deviation from the implied peg is your depeg signal
  • circulating — circulating supply in USD
  • pctChange7d — percentage change in supply over the trailing 7 days
  • chainCount — number of chains the stablecoin is deployed across

The schema is stable and additive — safe to load straight into a time-series store and refresh on a tight schedule.

Use cases

  • Depeg monitoring. Schedule the actor hourly, alert when any tracked coin's price drifts beyond a tolerance band from its peg, and route the alert to your desk or risk channel before the move is obvious on a chart.
  • Supply-contraction early warning. Watch pctChange7d for sustained negative readings — a stablecoin steadily redeeming is often the first visible sign of confidence draining, ahead of any price break.
  • Treasury reserve risk. If your treasury holds stablecoin reserves, track the health of exactly the coins you hold and set thresholds on peg deviation and supply change to trigger a rebalance review.
  • Counterparty exposure screening. Before accepting a stablecoin as collateral or settlement, check its circulating supply, peg stability, and chain spread to gauge concentration and redemption risk.
  • Market-share and flows research. Sort the universe by circulating to track which stablecoins are gaining or losing share, and use chainCount to see where liquidity is migrating across chains.
  • Stablecoin-basket construction. Filter by pegType and minCirculating to build a screened basket of liquid, on-peg coins for a stablecoin yield or settlement strategy.
  • Macro / de-dollarization research. Compare peggedUSD against peggedEUR and other peg types to track non-USD stablecoin growth as a slow-moving macro signal.

Sample output

{
"name": "Tether",
"symbol": "USDT",
"pegType": "peggedUSD",
"price": 0.9998,
"circulating": 112430000000,
"pctChange7d": 1.42,
"chainCount": 14
}

A run sorted by pctChange7d ascending surfaces the coins whose supply is contracting fastest — the watchlist a risk desk wants at the top of the screen.

Input parameters

ParameterLabelDescription
nameContainsName containsFilter by stablecoin name (e.g. USDT).
pegTypePeg typeFilter by peg type (e.g. peggedUSD, peggedEUR).
minCirculatingMin circulating (USD)Minimum circulating supply in USD.
sortBySort byField to sort the results by.
maxResultsMax resultsMaximum number of stablecoins to return.

How to use

Python (apify-client)

from apify_client import ApifyClient
client = ApifyClient("YOUR_TOKEN")
run = client.actor("nexgendata/stablecoin-supply-peg-monitor").call(run_input={
"pegType": "peggedUSD",
"minCirculating": 100000000,
"sortBy": "pctChange7d",
"maxResults": 50,
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["symbol"], item["price"], item["pctChange7d"], item["circulating"])

cURL

curl -X POST "https://api.apify.com/v2/acts/nexgendata~stablecoin-supply-peg-monitor/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"pegType": "peggedUSD",
"minCirculating": 100000000,
"maxResults": 50
}'

Schedule it hourly via Apify's scheduler and fire a webhook to Slack, Make, or n8n when a coin breaches your peg-deviation or supply-change threshold.

Pricing

This actor runs on Apify's pay-per-event model — $0.10 per result record, plus a negligible one-time actor-start charge per run. No subscription, no seat licence, no minimum.

Worked examples:

  • Top 50 USD stablecoins, hourly → 50 records × $0.10 = ~$5.00 per run
  • A focused watchlist of 10 coins, every 15 minutes → 10 × $0.10 = ~$1.00 per run
  • The full stablecoin universe (100 coins), once daily → **$10.00 per run**

You pay only for records pushed to the dataset. Apify's free monthly tier covers most exploratory runs. Browse the full catalog at https://apify.com/nexgendata?fpr=2ayu9b

How this compares to Nansen / Messari

SourcePriceWhat you get
Nansen~$thousands / yr per seatOn-chain analytics dashboards, wallet labels, flows — seat-locked, dashboard-first
Messari~$thousands / yr per seatResearch, metrics, and screeners across crypto — subscription, UI-oriented
NexGenData Stablecoin Supply & Peg MonitorPPE $0.10 / recordCirculating supply, peg deviation, 7-day supply change, and chain spread per coin, as flat JSON

Nansen and Messari are broad analytics platforms — if you need wallet-level flows, labelled addresses, and a full research workspace, they earn their subscription. But if the specific job is monitoring stablecoin supply and peg health as a data feed, this actor delivers those exact metrics in a form your own systems can consume, priced per record instead of per seat.

FAQ

Q: How is depeg measured? A: The price field reports the stablecoin's current price; compare it to its implied peg (1.00 for peggedUSD) and your chosen tolerance band to detect a depeg. The actor gives you the raw number so you set the threshold that fits your risk policy.

Q: What does pctChange7d represent? A: The percentage change in the coin's circulating supply over the trailing 7 days — positive means net minting, negative means net redemption. Sustained negative readings are a common early stress signal.

Q: Can I filter to only large coins? A: Yes — set minCirculating to your floor (e.g. 100000000 for $100M+) to exclude thinly-circulating coins from the run.

Q: How fresh is the data? A: Each run reads live, so results reflect current supply and price at run time. For depeg monitoring, schedule it hourly or tighter.

Q: Does it cover non-USD stablecoins? A: Yes — filter by pegType (peggedUSD, peggedEUR, and others) to focus on or compare across peg types.

Schema stability & versioning

This actor follows NexGenData's additive-only schema contract. New fields may be added over time as new JSON keys (defaulting to null for older records), but existing fields are never renamed or removed without a major-version bump and advance notice. Date and numeric semantics are never silently changed. Build your time-series ETL on the seven documented fields with confidence.

  • The actor reads public, aggregated stablecoin market data — no authentication, no private endpoints, no credentials stored.
  • Output is informational market data, not investment advice; verify against primary sources before acting on a depeg or contraction signal.
  • You are responsible for ensuring your downstream use complies with your jurisdiction's financial-data and market-conduct rules.

Part of NexGenData's crypto & DeFi intelligence lane — pair this actor with:

Explore the full catalog of 200+ buyer-intent actors at https://apify.com/nexgendata?fpr=2ayu9b