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

# kalshi.market_report

> Kalshi market metadata — event contract details, categories, settlement rules, and current status.

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 `kalshi.market_report` table contains market-level metadata for Kalshi event contracts, including ticker, title, category, and lifecycle status.

## Table Schema

| Column          | Type        | Description                                                              |
| --------------- | ----------- | ------------------------------------------------------------------------ |
| `block_volume`  | `DOUBLE`    | Trading volume for the block period                                      |
| `category`      | `VARCHAR`   | Category of the event contract (e.g., Politics, Economics, Sports, etc.) |
| `daily_volume`  | `DOUBLE`    | Total trading volume for the day                                         |
| `date`          | `VARCHAR`   | Date of the market report                                                |
| `high`          | `DOUBLE`    | Highest price reached during the reporting period                        |
| `low`           | `DOUBLE`    | Lowest price reached during the reporting period                         |
| `open_interest` | `DOUBLE`    | Total number of outstanding contracts                                    |
| `payout_type`   | `VARCHAR`   | Type of payout for the event contract                                    |
| `report_ticker` | `VARCHAR`   | Unique ticker identifier for the market report                           |
| `status`        | `VARCHAR`   | Current status of the event contract market                              |
| `ticker_name`   | `VARCHAR`   | Name or description of the event contract ticker                         |
| `_updated_at`   | `TIMESTAMP` | Last update timestamp                                                    |
| `_ingested_at`  | `TIMESTAMP` | Ingestion timestamp                                                      |

## Table sample

<TableSample tableSchema="kalshi" tableName="market_report" />
