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

# Data Products

> Every dataset ChainStream publishes — what it contains, how fresh it is, and how to access it.

ChainStream is organized as a catalog of **data products**. Each product is a normalized, multi-chain dataset with a defined shape, refresh cadence and delivery surface. Pick a product below to see its fields, coverage, SLAs and which access method fits best.

## Catalog

<CardGroup cols={2}>
  <Card title="Tokens" icon="coins" href="/en/docs/data-products/tokens">
    Metadata, market data, prices, holders, security info, creation events.
  </Card>

  <Card title="Trades" icon="right-left" href="/en/docs/data-products/trades">
    DEX swaps normalized across chains — price, size, maker/taker, router.
  </Card>

  <Card title="Wallets" icon="wallet" href="/en/docs/data-products/wallets">
    Balances, PnL, net-worth curves, transfer history, first-tx timing.
  </Card>

  <Card title="DEX Pools" icon="droplet" href="/en/docs/data-products/dex-pools">
    Pool state, reserves, fee tiers, liquidity snapshots over time.
  </Card>

  <Card title="Rankings" icon="trophy" href="/en/docs/data-products/rankings">
    Curated lists — hot, new, migrated, final-stretch, stock-like tokens.
  </Card>

  <Card title="Candles (OHLC)" icon="chart-column" href="/en/docs/data-products/candles-ohlc">
    Multi-interval OHLC for token, pair and pool addresses.
  </Card>

  <Card title="Holders" icon="users" href="/en/docs/data-products/holders">
    Top holders, distribution, concentration and change over time.
  </Card>

  <Card title="Smart Money" icon="brain" href="/en/docs/data-products/smart-money">
    Curated wallet cohorts with labels, win-rate and flow aggregates.
  </Card>

  <Card title="Blockchain Core" icon="cube" href="/en/docs/data-products/blockchain-core">
    Raw blocks, transactions, gas metrics and chain-level state.
  </Card>

  <Card title="Data Freshness & SLA" icon="gauge-high" href="/en/docs/data-products/data-freshness">
    Latency, refresh intervals and backfill behaviour per dataset.
  </Card>
</CardGroup>

## How data products are organized

Every dataset is described the same way, so you can assess fit quickly:

<CardGroup cols={3}>
  <Card title="Definition" icon="circle-info">
    What is in the dataset, in plain English — with the canonical schema.
  </Card>

  <Card title="Coverage" icon="globe">
    Which chains the dataset is available on, and any per-chain caveats.
  </Card>

  <Card title="Freshness" icon="clock">
    Real-time tick, near-real-time (seconds), or snapshot (minutes/hours).
  </Card>

  <Card title="Access" icon="plug">
    Which interfaces expose it — REST, GraphQL, WebSocket, Kafka, SDK, CLI, MCP.
  </Card>

  <Card title="Volume & rate" icon="wave-square">
    Expected throughput per chain — useful for sizing consumers.
  </Card>

  <Card title="Billing" icon="receipt">
    Which plan tier and unit cost applies when you call it.
  </Card>
</CardGroup>

## Relationship between products

Most products cross-reference each other by the same canonical IDs:

* A `tokenAddress` in **Tokens** is the same one used in **Trades**, **Candles**, **Holders** and **Pools**.
* A `walletAddress` in **Wallets** flows through **Trades**, **Transfers** and **Smart Money**.
* A `poolAddress` in **DEX Pools** is the source of its own **Candles** and **Trades** slice.

This lets you join across products without reconciling IDs by hand.

## Pick your entry point

<CardGroup cols={2}>
  <Card title="I know the entity I want" icon="magnifying-glass" href="/en/docs/data-products/tokens">
    Jump into Tokens / Trades / Wallets / Pools directly.
  </Card>

  <Card title="I know the pattern I want" icon="share-nodes" href="/en/docs/access-methods/overview">
    Pick the right access method — REST / GraphQL / WebSocket / Kafka.
  </Card>

  <Card title="I want to learn before I build" icon="graduation-cap" href="/en/docs/tutorials/build-price-alert-bot">
    Follow a tutorial that touches several products end-to-end.
  </Card>

  <Card title="I want raw facts" icon="book-bookmark" href="/en/api-reference/overview">
    Go straight to the API Reference.
  </Card>
</CardGroup>
