> ## 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 data and information about event contracts on Kalshi. Each row represents market statistics and metrics for a specific event contract ticker.

## Table Schema

| Column Name    | Data Type | Description                                                              |
| -------------- | --------- | ------------------------------------------------------------------------ |
| block\_volume  | double    | Trading volume for the block period                                      |
| category       | string    | Category of the event contract (e.g., Politics, Economics, Sports, etc.) |
| daily\_volume  | double    | Total trading volume for the day                                         |
| date           | string    | 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   | string    | Type of payout for the event contract                                    |
| report\_ticker | string    | Unique ticker identifier for the market report                           |
| status         | string    | Current status of the event contract market                              |
| ticker\_name   | string    | Name or description of the event contract ticker                         |
| \_updated\_at  | timestamp | Last update timestamp                                                    |
| \_ingested\_at | timestamp | Ingestion timestamp                                                      |
