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.
<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.
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 →
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>
DC Hub Data Center Power Index, dchub.cloud/dcpi, accessed YYYY-MM-DD
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 →