# NYC Daily High Temperature Markets — Kalshi

**Use case:** 

Kalshi weather contracts on the highest temperature in New York City: one row per temperature bracket with Yes price, bid/ask, 24h change, volume and close time. For weather traders and forecasters comparing forecasts with market odds. Change seriesTicker to another city's series (find them with mode=series).

## Input

```json
{
  "mode": "markets",
  "query": "Fed",
  "seriesTicker": "KXHIGHNY",
  "status": "open",
  "sortBy": "volume24h",
  "maxItems": 20,
  "includeCombos": false,
  "includeOrderBook": false,
  "orderBookDepth": 5,
  "includeCandles": false,
  "candlePeriod": "1h",
  "candleLookbackDays": 7,
  "includeTrades": false,
  "tradesLimit": 20,
  "includeRules": true
}
```

## Output

```json
{
  "eventTitle": {
    "label": "Event",
    "format": "text"
  },
  "subtitle": {
    "label": "Outcome",
    "format": "text"
  },
  "yesPrice": {
    "label": "Yes ¢",
    "format": "number"
  },
  "yesBid": {
    "label": "Bid",
    "format": "number"
  },
  "yesAsk": {
    "label": "Ask",
    "format": "number"
  },
  "priceChange": {
    "label": "Δ",
    "format": "number"
  },
  "volume24h": {
    "label": "Vol 24h",
    "format": "number"
  },
  "openInterest": {
    "label": "OI",
    "format": "number"
  },
  "closeTime": {
    "label": "Closes",
    "format": "date"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Kalshi Scraper — Prediction Markets, Prices & Volume](https://apify.com/yadroo/kalshi-markets.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/yadroo/kalshi-markets.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/yadroo/kalshi-markets.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`).
