Stablecoin Peg Monitor ($0
Stablecoin Peg Monitor ($0.015/call): Live peg-and-supply snapshot for any stablecoin by symbol (USDC, USDT, DAI, ...): current price, signed deviation from peg in basis points, a depeg alert at 1%, total circulating supply and its top-chain breakdown. Keyless. Useful before settling or holding value in a given stablecoin.
15000 (raw units)
price
4
calls / 30d
4
unique payers
2026-09-17
updated
Provider
x402.botsmith.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xcb9b3F94387389e38EF2A7b3C0B851FB8325d7e9",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "15000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:196",
"payTo": "0xadd1a0a81836b1ea5b272dbed78746ba09f55370",
"asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
"amount": "15000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"symbol": "USDC"
},
"type": "http"
},
"output": {
"example": {
"chainCount": 84,
"circulatingUsd": 73409336950,
"depegAlert": false,
"id": "2",
"name": "USD Coin",
"pegDeviationBps": -1,
"pegMechanism": "fiat-backed",
"pegTarget": 1,
"pegType": "peggedUSD",
"price": 0.9999,
"symbol": "USDC",
"topChains": [
{
"chain": "Ethereum",
"circulatingUsd": 41000000000,
"share": 0.558
},
{
"chain": "Solana",
"circulatingUsd": 9000000000,
"share": 0.123
},
{
"chain": "Base",
"circulatingUsd": 4200000000,
"share": 0.057
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Stablecoin symbol (USDC, USDT, DAI) or name substring",
"maxLength": 40,
"minLength": 1,
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"chainCount": {
"description": "Chains the asset is live on",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
"circulatingUsd": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"description": "Total circulating supply in USD"
},
"depegAlert": {
"description": "True when |deviation| >= 100 bps (1%)",
"type": "boolean"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"pegDeviationBps": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"description": "Signed basis points off the peg target"
},
"pegMechanism": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "e.g. fiat-backed, crypto-backed, algorithmic"
},
"pegTarget": {
"description": "Intended peg value (1 for USD stablecoins)",
"type": "number"
},
"pegType": {
"description": "e.g. peggedUSD, peggedEUR",
"type": "string"
},
"price": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"description": "Latest price in the peg currency"
},
"symbol": {
"type": "string"
},
"topChains": {
"description": "Top chains by circulating supply",
"items": {
"additionalProperties": false,
"properties": {
"chain": {
"type": "string"
},
"circulatingUsd": {
"type": "number"
},
"share": {
"description": "Fraction of total supply on this chain",
"type": "number"
}
},
"required": [
"chain",
"circulatingUsd",
"share"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"id",
"symbol",
"name",
"pegType",
"pegMechanism",
"price",
"pegTarget",
"pegDeviationBps",
"depegAlert",
"circulatingUsd",
"topChains",
"chainCount"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.botsmith.dev/stablecoin/peg" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.botsmith.dev/stablecoin/peg");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402.botsmith.dev/stablecoin/peg")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/484.json, and this resource appears in /discovery/resources and /discovery/search.