Embeddable Widgets

Drop a live Funding Finder widget into your blog, newsletter, or status page. Free, no signup, no API key. Updates every minute.

1. Sentiment widget — BTC / ETH / SOL averaged

Three colored cards showing the cross-venue averaged annualized funding rate for the majors, with an "overheated / neutral / fearful" label. Refreshes every minute. ~360px tall, responsive width.

<iframe src="https://fundingfinder.foxyyy.com/sentiment"
        width="100%" height="420"
        style="border:0;border-radius:8px;background:#0a0e1a"
        loading="lazy"></iframe>

2. Heatmap widget — base × exchange annualized %

Top 25 base coins × 20 exchanges, colored matrix (red = positive funding, green = negative). Hover for per-cell details. ~640px tall on desktop, scrollable on mobile.

<iframe src="https://fundingfinder.foxyyy.com/heatmap"
        width="100%" height="700"
        style="border:0;border-radius:8px;background:#0a0e1a"
        loading="lazy"></iframe>

3. Raw JSON — for custom widgets

If you want to render the data yourself, all endpoints are CORS-open and rate-limited at 60 req/min/IP on the free tier. Pull JSON directly:

// sentiment one-call (BTC/ETH/SOL by default)
fetch('https://fundingfinder.foxyyy.com/api/funding/sentiment')
  .then(r => r.json())
  .then(d => console.log(d.sentiment));

// top 5 cross-venue divergences
fetch('https://fundingfinder.foxyyy.com/api/funding/divergence?min_venues=3&min_volume=5000000&signed=true&limit=5')
  .then(r => r.json())
  .then(d => console.log(d.rows));

// base × exchange heatmap matrix
fetch('https://fundingfinder.foxyyy.com/api/funding/heatmap?top=10')
  .then(r => r.json())
  .then(d => console.log(d.matrix.BTC));

4. CSV exports — for spreadsheets

Direct CSV exports if you want to drop data into Excel or Google Sheets without writing code:

https://fundingfinder.foxyyy.com/api/funding/current.csv         # all current rates
https://fundingfinder.foxyyy.com/api/funding/arb.csv             # cross-exchange arb opportunities
https://fundingfinder.foxyyy.com/api/funding/divergence.csv      # cross-venue divergence
https://fundingfinder.foxyyy.com/api/funding/by_volume.csv       # base coins ranked by volume
https://fundingfinder.foxyyy.com/api/funding/symbol/BTC.csv      # all venues for one base coin
Terms. Embedding is free. Attribution is appreciated but not required. Rate limit on the free tier is 60 req/min/IP — embed widgets refresh on a 60-second timer so a single embed is one request per minute, comfortably under the cap. If you're embedding on a high-traffic page (>1000 simultaneous viewers), get in touch and I'll set you up with a higher-quota key. Data is sourced directly from public exchange APIs and is not investment advice.