34 tokens tracked📈 Avg premium +1.97%💰 $7.86M 24h volume🎮 1 fETH players · 0.03 fETH staked this week🏆 Leaderboard →

Developers

Every number on this site comes from two public endpoints below — no API key, no auth, open CORS (Access-Control-Allow-Origin: *), refreshed every 30s. Use it to build your own dashboard, bot, or alert, or just embed a live widget with the snippet at the bottom.

GET/api/premium

Every tracked ticker's live premium in one call — this is exactly what powers the homepage table.

Request

curl https://rwam.digital/api/premium

Response

{ "updatedAt": 1753142400, "stocks": [ { "ticker": "NVDA", "name": "NVIDIA", "tokenPrice": 213.96, "official": 207.04, "officialUpdatedAt": 1753056000, "premiumPct": 3.34, "volume24h": 3589862.74, "liquid": true }, ... ] }
GET/api/premium/{ticker}

Same shape as above, scoped to one ticker. Returns 404 with { "error": ... } if the ticker isn't tracked or has no live price right now.

Request

curl https://rwam.digital/api/premium/NVDA

Response

{ "ticker": "NVDA", "name": "NVIDIA", "tokenPrice": 213.96, "official": 207.04, "officialUpdatedAt": 1753056000, "premiumPct": 3.34, "volume24h": 3589862.74, "liquid": true, "updatedAt": 1753142400 }

Field reference

FieldMeaning
tokenPriceLive DEX price the token trades at on Robinhood Chain, USD.
officialFrozen Chainlink close — only updates during NYSE hours.
officialUpdatedAtUnix seconds the Chainlink feed last updated.
premiumPct(tokenPrice − official) / official × 100.
volume24h24h onchain volume, USD, or null if Blockscout doesn't know it.
liquidfalse below $1,000 24h volume — the DEX price may be a stale single print, treat premiumPct as unreliable.

Embeddable widget

/embed/{ticker} is a bare, iframe-able HTML card (no JS required on your end) — same data, refreshed every 30s client-side. Try it for any of the 34 tracked tickers:

Embed this on your site
<iframe src="https://rwam.digital/embed/NVDA" width="280" height="130" frameborder="0" style="border:none;"></iframe>

No rate limit is enforced today — be a reasonable citizen (this proxies a public Blockscout/Chainlink pipeline underneath).

Found a bug or want a field added? There's no issue tracker yet — reach out however you found this site.