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

# polymarket_polygon.market_prices_hourly

> Polymarket hourly price snapshots — outcome token prices aggregated by hour.

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>
  </>;

The `polymarket_polygon.market_prices_hourly` table contains hourly Polymarket outcome token prices, forward-filled from observed trade activity. For combo token prices see [`combo_prices_hourly`](/data-catalog/curated/prediction-markets/polymarket/combo_prices_hourly); for full candles with volume see [`ohlcv_hourly`](/data-catalog/curated/prediction-markets/polymarket/ohlcv_hourly).

## Table Schema

| Column         | Type        | Description                                                    |
| -------------- | ----------- | -------------------------------------------------------------- |
| `block_month`  | `DATE`      | Month partition derived from `hour`                            |
| `hour`         | `TIMESTAMP` | Hour for which the price is valid                              |
| `condition_id` | `VARBINARY` | Unique market condition identifier                             |
| `token_id`     | `UINT256`   | Token ID for the outcome                                       |
| `price`        | `DOUBLE`    | End-of-hour price of the outcome token                         |
| `_updated_at`  | `TIMESTAMP` | When this row was last inserted or updated by the dbt pipeline |

## Table sample

<TableSample tableSchema="polymarket_polygon" tableName="market_prices_hourly" />
