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.
/api/premiumEvery tracked ticker's live premium in one call — this is exactly what powers the homepage table.
Request
curl https://rwam.digital/api/premiumResponse
{
"updatedAt": 1753142400,
"stocks": [
{
"ticker": "NVDA",
"name": "NVIDIA",
"tokenPrice": 213.96,
"official": 207.04,
"officialUpdatedAt": 1753056000,
"premiumPct": 3.34,
"volume24h": 3589862.74,
"liquid": true
},
...
]
}/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/NVDAResponse
{
"ticker": "NVDA",
"name": "NVIDIA",
"tokenPrice": 213.96,
"official": 207.04,
"officialUpdatedAt": 1753056000,
"premiumPct": 3.34,
"volume24h": 3589862.74,
"liquid": true,
"updatedAt": 1753142400
}Field reference
| Field | Meaning |
|---|---|
| tokenPrice | Live DEX price the token trades at on Robinhood Chain, USD. |
| official | Frozen Chainlink close — only updates during NYSE hours. |
| officialUpdatedAt | Unix seconds the Chainlink feed last updated. |
| premiumPct | (tokenPrice − official) / official × 100. |
| volume24h | 24h onchain volume, USD, or null if Blockscout doesn't know it. |
| liquid | false 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.