> ## 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.

# hyperliquid.market_data

> Hyperliquid market data — order book snapshots, funding rates, open interest, and trade history.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table description

The `hyperliquid.market_data` table contains historical trading data from the Hyperliquid decentralized exchange. The data includes trading volume, open interest, funding rates, and other market metrics across all perpetual futures markets on the platform. The data is updated monthly.

## Table Schema

| Column Name     | Type      | Description                                             |
| --------------- | --------- | ------------------------------------------------------- |
| time            | timestamp | Timestamp of the market data snapshot                   |
| coin            | varchar   | Ticker symbol of the perpetual futures asset            |
| funding         | double    | Current funding rate for the perpetual contract         |
| open\_interest  | double    | Total open interest in the asset                        |
| prev\_day\_px   | double    | Closing price from the previous day                     |
| day\_ntl\_vlm   | double    | Notional trading volume over the day                    |
| premium         | double    | Premium of the perpetual price over the oracle price    |
| oracle\_px      | double    | Oracle (spot index) price of the asset                  |
| mark\_px        | double    | Mark price used for margin and liquidation calculations |
| mid\_px         | double    | Mid-point price between best bid and best ask           |
| impact\_bid\_px | double    | Bid-side price adjusted for a standard impact notional  |
| impact\_ask\_px | double    | Ask-side price adjusted for a standard impact notional  |

## Table Sample

<TableSample tableSchema="hyperliquid" tableName="market_data" />
