Skip to main content
GET
/
rwa
/
{address}
Get detailed depeg risk data for a specific pegged token
curl --request GET \
  --url https://api.webacy.com/rwa/{address} \
  --header 'x-api-key: <api-key>'
{
  "token": {
    "address": "<string>",
    "chain": "<string>",
    "symbol": "<string>",
    "name": "<string>",
    "assetType": "<string>",
    "assetTypeReason": "<string>",
    "denomination": {
      "code": "<string>",
      "name": "<string>",
      "category": "<string>",
      "pegRatio": "<string>",
      "pegType": "<string>"
    },
    "token_labels": [
      "<string>"
    ],
    "peg_range": [
      123
    ],
    "is_collapsed": true,
    "is_rwa_nav": true,
    "rwa_nav_usd": 123,
    "rwa_nav_as_of": "<string>",
    "market_cap_usd": 123,
    "total_market_cap_usd": 123,
    "market_cap_by_chain": {},
    "circulating_supply": 123,
    "total_supply_on_chain": 123,
    "total_supply_cross_chain": 123,
    "fdv_usd": 123,
    "volume_24h": 123,
    "volume_24h_usd": 123,
    "dex_volume_24h_usd": 123,
    "markets": [
      {
        "dex": "<string>",
        "pair": "<string>",
        "pool_address": "<string>",
        "chain": "<string>",
        "liquidity_usd": 123,
        "volume_24h_usd": 123
      }
    ],
    "migration": {
      "target_symbol": "<string>",
      "target_address": "<string>",
      "ratio": 123,
      "notes": "<string>"
    },
    "project_info": {
      "issuer": "<string>",
      "audit_count": 123,
      "audit_firms": [
        "<string>"
      ],
      "last_audit_date": "<string>",
      "audit_report_urls": [
        "<string>"
      ],
      "notes": "<string>"
    },
    "score_delta_24h": 123,
    "score_delta_7d": 123
  },
  "snapshot": {
    "ts": "<string>",
    "score": 123,
    "drivers": [
      {
        "name": "<string>",
        "raw": 123,
        "normalized": 123,
        "weight": 123,
        "contribution": 123
      }
    ],
    "price": 123,
    "peg_value": 123,
    "abs_dev_clean": 123,
    "dev_clean": 123,
    "reference_price": 123,
    "reference_prices": {},
    "price_source": "<string>",
    "price_sources_agree": true,
    "price_source_deviation": 123,
    "within_expected_range": true,
    "data_alerts": [
      "<string>"
    ]
  },
  "risk": {},
  "history": {
    "hours": 84,
    "series": [
      {
        "ts": "<string>",
        "score": 123,
        "abs_dev_clean": 123,
        "price": 123,
        "peg_value": 123
      }
    ],
    "consecutive_days_below_peg": 123
  },
  "depegEvents": [
    {
      "eventType": "<string>",
      "oldTier": "<string>",
      "newTier": "<string>",
      "riskScore": 123,
      "deviationPct": 123,
      "detectedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "events": [
    {
      "id": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "chain": "<string>",
      "address": "<string>",
      "start": "<string>",
      "end": "<string>",
      "notes": "<string>"
    }
  ],
  "stale": true
}

Authorizations

x-api-key
string
header
required

Path Parameters

address
string
required

Token contract address (hex format).

Query Parameters

chain
string

Chain disambiguator (required if the address exists on multiple chains).

hours
integer
default:24

Hours of history to return (default 24, max 168).

Required range: 1 <= x <= 168

Response

Full token detail with depeg snapshot, score decomposition, and history

token
object
required

Token identity + classification + market data for the detail endpoint.

snapshot
object
required

Full point-in-time depeg snapshot returned by the detail endpoint.

risk
object
required
history
object
required
depegEvents
object[]
required
events
object[]
required
stale
boolean
required