# Kalshi weather index: last 24 hours for all cities

**Use case:** 

The minute-by-minute temperature index Kalshi settles its hourly temperature markets on, for all 13 index cities over the last 24 hours, one compact row per city-hour with all 60 minute values, min, max and calibration version. Public Kalshi endpoint, no login. $0.05 per 1,000 index points (about $0.94 for this task).

## Input

```json
{
  "mode": "index",
  "cities": [
    "miami",
    "dfw",
    "houston",
    "phl-delaware-valley",
    "puget-sound",
    "sf-bay",
    "greater-boston",
    "southeast-michigan",
    "kansas-city",
    "minneapolis-st-paul",
    "nyc",
    "chicago",
    "la-coastal"
  ],
  "stations": [],
  "lastDays": 1,
  "sources": [
    "nws",
    "metar"
  ],
  "lastHours": 24,
  "detailed": false,
  "maxItems": 20000,
  "compact": true,
  "archiveOnly": false,
  "alignToHour": true
}
```

## Output

```json
{
  "city": {
    "label": "City"
  },
  "time": {
    "label": "Time"
  },
  "temperatureF": {
    "label": "°F"
  },
  "temperatureC": {
    "label": "°C"
  },
  "status": {
    "label": "Status"
  },
  "contributors": {
    "label": "Contributors"
  },
  "configVersion": {
    "label": "Config version"
  }
}
```

## About this Actor

This example demonstrates how to use [Kalshi Weather Index, Station Obs & Settlement Audit](https://apify.com/gratified_ashram/kalshi-weather-index.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/gratified_ashram/kalshi-weather-index.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/gratified_ashram/kalshi-weather-index.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
