Straight answer
Does Crypto Bubbles have a public API?
Let's start with what most people came here for. The official cryptobubbles.net site does not advertise a public, documented developer API. There's no developer portal, no request pricing, no endpoint documentation. Crypto Bubbles is a consumer product — a visualization covering more than a thousand coins, refreshed automatically, available in the browser and in mobile apps (that's how its own site presents it) — not a data warehouse.
We say that plainly because the web is full of tutorials implying otherwise, or worse, of pages posing as "the official Crypto Bubbles API" with keys for sale. Treat those the way you'd treat a sideloaded APK from a forum: somebody is trying to sell you something the maker doesn't offer. The rule from our app download guide applies here too — the only source of truth about the official product is cryptobubbles.net.
And now the good news: you don't need any particular app's API to build your own bubble board. Bubbles are just a way of drawing data the market publishes anyway. You need four numbers per coin and about forty lines of code. The rest of this page is about exactly that.
How bubble apps get their data: a three-link chain
Every market visualization — from bubbles to the heatmaps we cover in the market map guide — sits on the same supply chain:
- Link 1: exchanges. The original source of every price is a specific exchange's order book. That's where trades actually happen, and "the price of bitcoin" is in reality dozens of prices from dozens of venues, differing by fractions of a percent.
- Link 2: aggregators. Data services collect quotes from hundreds of exchanges, average them (usually volume-weighted), add circulating supply, and publish finished metrics: market cap, rank, percentage changes over standard time windows.
- Link 3: applications. Visualizations like a bubble board pull normalized JSON from aggregators and convert numbers into geometry and color. All the "magic" happens in the user's browser.
That split has a practical consequence for your project: you can tap in at any link. An aggregator gives you convenience — one endpoint, thousands of coins, market caps already computed. An exchange gives you freshness — data straight from the book, no intermediary and no averaging lag, but only for pairs listed on that one venue. Mature projects often combine both: the aggregator for ranking and market cap, the exchange for real-time prices.