Loading studio…
DevTools · Market API + CDN
Live probes and request console for api.riddlewallet.com and cdn.riddlewallet.com. Suite apps are free; external customers use paid API keys.
| Check | Status | ms | Note |
|---|---|---|---|
| No results | |||
// Prefer Riddle hosts (edge cache + suite branding)
const API = 'https://api.riddlewallet.com/v1'
const CDN = 'https://cdn.riddlewallet.com'
// Tokens
const tokens = await fetch(`${API}/tokens?limit=48&sortBy=vol24hxrp&sortType=desc`).then(r => r.json())
// NFT meta
const nft = await fetch(`${API}/nft/${nftId}`).then(r => r.json())
// Images — always use CDN for thumbs
<img src={`${CDN}/nft-thumb/${nftId}`} alt="" />
<img src={`${CDN}/thumb/${md5}`} alt="" />