Embed the DCPI Ticker

Drop the live Data Center Power Index across the top of your site. One iframe, zero config. Free forever — we just ask for a link back.

1. Iframe (the easy way)

<iframe src="https://dchub.cloud/dcpi/ticker.html"
        width="100%" height="48"
        style="border:0;display:block;background:#0a0a12;"
        loading="lazy"
        title="DCPI Live Ticker"></iframe>

That's it. The ticker auto-updates from /api/v1/dcpi/trending on each load. Hover pauses scrolling.

Live preview

2. JSON API (build your own)

fetch("https://dchub.cloud/api/v1/dcpi/trending")
  .then(r => r.json())
  .then(data => {
    // data.markets is an array of {market, slug, excess_power_score, constraint_score, label}
    console.log(data);
  });

No API key required. CORS is open. Full API docs →

3. Powered-by attribution

If you embed the ticker on a public page, please include a small attribution somewhere visible:

Powered by <a href="https://dchub.cloud/dcpi">DC Hub Data Center Power Index</a>

Citation format

DC Hub Data Center Power Index, dchub.cloud/dcpi, accessed YYYY-MM-DD

Used by

Real estate brokerages, AI infrastructure newsletters, utility-side analysts, county economic-development pages, and academic researchers. Want to be listed here? Email Jonathan.

Open the live index →