Dune Analytics Scraper
Spider read dune.com in 185 ms without a browser and returned 91 lines of clean markdown, including sections like "Prediction Markets", "Crypto Tokens" and "Built for every team operating in digital asset markets".
### Prediction MarketsPrediction market datasets for Polymarket and Kalshi activity.### RWATokenized real-world asset data across issuers, underlyings, and chains.### Crypto TokensERC-20 and native token balances, transfers, and holder data across 21 EVM chains.## Built for every team operating in digital asset markets### Hedge FundsUse prediction markets and onchain flows as alternative-data signals for trading decisions.View Asset Managers solutions### Asset ManagersMonitor tokenized fund performance and the RWA market onchain to shape product strategy.## Reliable data,#### DatashareDirect share of Dune's full blockchain dataset into your existing warehouse such as Snowflake, Databricks or Bigquery.### “Dune has by far the largest and most comprehensive dataset on the market”### “If it's not on Dune it's not real”### “Without using Dune your project is blind”## The data behind the headlinesWhen major outlets need the real number, they cite Dune. Explore Dune's extensive reports and get world-class analysis first, for free, with the Digital Asset Brief.Local Stablecoins Report The rise of local-currency stablecoins as a new form of digital fiat.RWA report Comprehensive insights into real-world assets onchain and tokenization trends.Prediction-Market Pricing of the 2026 Mega-IPOs What Kalshi and Polymarket are pricing for the SpaceX, OpenAI, and Anthropic IPOs, and where the two venues disagree, read through Dune's prediction-markets dataset.## Production-grade dataBuilt-in data quality controls and 24/7 enterprise-level supportData HubAPIs & ConnectorsDatashareAI AgentsNEWdbt ConnectorNEWDune for chainsPricingDashboards200K+Datasets1.5M+Queries6.5M+Blockchains100+Data DocsSolutionsUse CasesEnterpriseCompare DuneCase StudiesDocumentationContent HubHire an ExpertBecome an ExpertGive us FeedbackTrust centerAboutCareersEventsPress RoomNewsletterBrand HubDune Merch The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on dune.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://dune.com/browse/dashboards?q=ethereum");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://dune.com/browse/dashboards?q=ethereum");
await page.content(10000);
const data = await page.evaluate(`(() => {
const dashboards = [];
document.querySelectorAll("[class*='DashboardCard']").forEach(el => {
const title = el.querySelector("h3")?.textContent?.trim();
const creator = el.querySelector("[class*='creator']")?.textContent?.trim();
const stars = el.querySelector("[class*='star-count']")?.textContent?.trim();
const link = el.querySelector("a")?.getAttribute("href");
if (title) dashboards.push({ title, creator, stars, link });
});
return JSON.stringify({ total: dashboards.length, dashboards: dashboards.slice(0, 10) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What dune.com costs to scrape.
The capture above cost $0.00056 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Finance scrapers.
Yahoo Finance Scraper
Extract stock quotes, financial statements, analyst ratings, and market news from Yahoo Finance.
Google Finance Scraper
Extract stock quotes, market indices, and financial news from Google Finance.
CoinGecko Scraper
Extract cryptocurrency prices, market caps, volume data, and historical charts from CoinGecko.
Start scraping dune.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.