Skip to main content
GET
/
rwa
/
{address}
Get Depeg Risk Detail for a Pegged Token
curl --request GET \
  --url https://api.webacy.com/rwa/{address} \
  --header 'x-api-key: <api-key>'
{
  "token": {
    "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
    "chain": "eth",
    "symbol": "usdc",
    "name": "USD Coin",
    "assetType": "stablecoin",
    "denomination": {
      "code": "USD",
      "name": "US Dollar",
      "category": "fiat",
      "pegRatio": "1",
      "pegType": "direct"
    },
    "token_type": "standard",
    "market_cap_usd": 52206490576,
    "volume_24h": 9589798722
  },
  "snapshot": {
    "ts": "2026-03-26T14:30:10Z",
    "score": 0,
    "tier": "ok",
    "price": 0.9998,
    "peg_value": 1,
    "abs_dev_clean": 0.0002,
    "dev_clean": -0.0002,
    "volatility_ratio": 1.37,
    "volatility_burst": false,
    "liquidity_tier": null
  },
  "risk": {
    "count": 0,
    "medium": 0,
    "high": 0,
    "overallRisk": 0,
    "issues": []
  },
  "history": {
    "hours": 24,
    "series": [
      {
        "ts": "2026-03-26T14:30:10Z",
        "score": 0,
        "tier": "ok",
        "price": 0.9998,
        "peg_value": 1
      }
    ]
  },
  "depegEvents": [
    {
      "eventType": "tier_change",
      "oldTier": "watch",
      "newTier": "ok",
      "riskScore": 22.5,
      "deviationPct": 0.03,
      "detectedAt": "2026-03-18T18:55:11Z"
    }
  ],
  "events": [],
  "stale": false
}

Authorizations

x-api-key
string
header
required

Path Parameters

address
string
required

Token contract address

Query Parameters

chain
string

Blockchain network. Required if the address exists on multiple chains; auto-resolved when unique.

hours
integer
default:24

Hours of history to return (default 24, max 168 = 7 days)

Response

Full token detail with depeg snapshot, risk assessment, history, and depeg events