> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Curated Data Overview

> Pre-built, cross-chain datasets maintained by Dune — the fastest path from raw blockchain data to production analytics.

export const DuneEmbed = ({qID, vID, height = '500px'}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/${qID}/${vID}?darkMode=true`} style={{
  width: '100%',
  height,
  border: 'none',
  marginTop: '10px'
}}></iframe>
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/${qID}/${vID}`} style={{
  width: '100%',
  height,
  border: 'none',
  marginTop: '10px'
}}></iframe>
    </div>
  </>;

Dune's curated data tables are pre-built, validated datasets that normalize data from hundreds of protocols across dozens of chains into consistent schemas. Built and maintained by Dune's data team, they are production-ready for analytics, applications, and data pipelines.

For example, the `dex.trades` table aggregates data from multiple sources to provide a comprehensive view of all trades on decentralized exchanges across EVM networks, while `dex_solana.trades` provides similar coverage for Solana DEXs.

## Getting Started

You can access curated data tables in several ways:

<CardGroup cols={2}>
  <Card title="Data Hub" icon="database" href="https://dune.com">
    Browse curated tables in the Data Hub within the Dune App. Use the data explorer to search tables, preview schemas, and see sample data.
  </Card>

  <Card title="Data Hub" icon="chart-mixed" href="https://dune.com">
    Write SQL queries against any curated table directly in the Data Hub — no infrastructure needed.
  </Card>

  <Card title="Data API" icon="code" href="/api-reference/overview/introduction">
    Access query results programmatically via the Dune API for application integrations and data pipelines.
  </Card>

  <Card title="Datashare" icon="warehouse" href="/datashare/datashare">
    Access curated tables directly in your own Snowflake, BigQuery, or Databricks environment via Datashare.
  </Card>
</CardGroup>

## Benefits of Curated Data Tables

* **Simplified Queries**: High-level views that abstract away raw data complexity.
* **Cross-Chain Analysis**: Consistent data models enable easy comparison between different blockchain networks.
* **Validated and Tested**: Automated quality checks at every pipeline stage.
* **Transparent Methodology**: Every dataset documents how it's built, design decisions, and limitations.

## Cross-Chain Coverage

Our curated data covers multiple blockchain ecosystems:

* **EVM Networks**: Ethereum, Arbitrum, Polygon, Base, Optimism, and 55+ other EVM chains
* **Solana**: Comprehensive coverage of Solana DeFi and NFT ecosystems
* **Non-EVM**: Bitcoin, Aptos, Sui, TON, Tron, and others for pricing and select datasets

Here is a non-exhaustive list of some of the curated data tables available:

<div>
  <DuneEmbed qID={3708634} vID={6239879} height={400} />
</div>

## Available Categories

<CardGroup cols={2}>
  <Card title="DEX Trades" icon="shuffle" href="/data-catalog/curated/dex-trades/overview">
    Comprehensive DEX trading data across EVM and Solana networks
  </Card>

  <Card title="Prediction Markets" icon="chart-line" href="/data-catalog/curated/prediction-markets/overview">
    Polymarket and Kalshi market activity, positions, and pricing
  </Card>

  <Card title="NFT Trades" icon="image" href="/data-catalog/curated/nft-trades/overview">
    NFT trading, minting, and metadata across multiple blockchains
  </Card>

  <Card title="Token Transfers" icon="coins" href="/data-catalog/curated/token-transfers/overview">
    Token transfers and balances across EVM and Solana
  </Card>

  <Card title="Address Labels" icon="tag" href="/data-catalog/curated/labels/overview">
    Identify and categorize blockchain addresses
  </Card>

  <Card title="Token Prices" icon="dollar-sign" href="/data-catalog/curated/prices/overview">
    Historical and real-time token pricing data
  </Card>

  <Card title="Balances" icon="scale-balanced" href="/data-catalog/curated/balances/overview">
    Current and historical token balances by address
  </Card>

  <Card title="Token Metadata" icon="info" href="/data-catalog/curated/token-metadata/overview">
    Token names, symbols, decimals, and contract addresses
  </Card>

  <Card title="Stablecoins" icon="coins" href="/data-catalog/curated/stablecoins/overview">
    Stablecoin transfers, balances, and activity classification across EVM, Solana, and Tron
  </Card>

  <Card title="Lending" icon="hand-holding-dollar" href="/data-catalog/curated/lending/overview">
    DeFi lending protocol data — supply, borrow, flash loans, and liquidations across 15+ chains
  </Card>

  <Card title="Bridges" icon="bridge" href="/data-catalog/curated/bridges/overview">
    Cross-chain bridge transfers — deposits, withdrawals, and matched flows across 41 EVM chains
  </Card>

  <Card title="Staking" icon="layer-group" href="/data-catalog/curated/staking/overview">
    Ethereum beacon chain staking — deposits, withdrawals, and entity identification
  </Card>

  <Card title="CEX Flows" icon="building-columns" href="/data-catalog/curated/cex-flows/overview">
    Centralized exchange inflows and outflows across 29 chains
  </Card>

  <Card title="Gas & Fees" icon="gas-pump" href="/data-catalog/curated/gas-fees/overview">
    Transaction-level fee data across 55+ EVM chains and Solana
  </Card>

  <Card title="Rollup Economics" icon="chart-line" href="/data-catalog/curated/rollup-economics/overview">
    L2 rollup profitability — revenue vs L1 posting costs
  </Card>

  <Card title="Utilities" icon="wrench" href="/data-catalog/curated/utilities/overview">
    Time-series scaffolding tables for building continuous analytics
  </Card>
</CardGroup>

## Resources

<CardGroup cols={2}>
  <Card title="Open-Source Models" icon="github" href="https://github.com/duneanalytics/spellbook">
    All curated data models are open-source — inspect the logic, contribute improvements, or build on top.
  </Card>

  <Card title="Model Documentation" icon="table" href="https://github.com/duneanalytics/spellbook">
    Browse model definitions, dependencies, and documentation for every curated table.
  </Card>

  <Card title="Contributing Guide" icon="book" href="https://github.com/duneanalytics/spellbook/tree/main/docs">
    Learn how to contribute new models or improve existing ones.
  </Card>

  <Card title="Adding Protocol Coverage" icon="code-pull-request" href="https://github.com/duneanalytics/spellbook/blob/main/dbt_subprojects/dex/README.md">
    Add your protocol's data to curated tables like dex.trades and nft.trades.
  </Card>
</CardGroup>
