---
title: "Get Kalshi Markets"
method: GET
path: "/v2/kalshi/markets"
tags: ["kalshi"]
---

# Get Kalshi Markets

`GET /v2/kalshi/markets`

List Kalshi markets with filtering and sorting.

Returns markets from the Kalshi prediction market platform with support for:
- Status filtering (open, closed)
- Price range filtering (0-100 scale)
- Volume and open interest thresholds
- Text search in titles
- Filtering by ticker, event ticker, or series ticker
- Multiple sort options
- Cursor-based pagination via pagination_key

Prices are returned as decimals (0-1) for API consistency.

## Query parameters

- `status` 'open' | 'closed'
- `min_price` integer, nullable — Minimum last price (0-100)
- `max_price` integer, nullable — Maximum last price (0-100)
- `min_open_interest` integer, nullable — Minimum dollar open interest
- `min_volume` integer, nullable — Minimum dollar volume
- `search` string, nullable — Search in title (minimum 3 characters)
- `ticker` string[], nullable — Filter by ticker(s)
- `event_ticker` string[], nullable — Filter by event ticker(s)
- `series_ticker` string[], nullable — Filter by series ticker(s)
- `predexon_id` string[], nullable — Filter by predexon ID(s)
- `sort` 'volume' | 'open_interest' | 'price_desc' | 'price_asc' | 'close_time'
- `limit` integer — Number of markets to return
- `pagination_key` string, nullable — Cursor for next page (from previous response)

## Response `200`

Successful Response

- KalshiMarketsResponse — Response for Kalshi markets list endpoint.
  - `markets` KalshiMarket[], required
    - `ticker` string, required
    - `event_ticker` string, required
    - `market_id` string, nullable
    - `title` string, required
    - `yes_subtitle` string
    - `no_subtitle` string
    - `status` string, required
    - `result` string, nullable
    - `open_time` string, nullable — ISO 8601 timestamp
    - `close_time` string, nullable — ISO 8601 timestamp
    - `expected_expiration_time` string, nullable — ISO 8601 timestamp
    - `settlement_time` string, nullable — ISO 8601 timestamp
    - `determination_time` string, nullable — ISO 8601 timestamp
    - `can_close_early` boolean
    - `strike_type` string, nullable
    - `custom_strike` string, nullable
    - `outcomes` KalshiOutcome[], required
      - `label` string, required
      - `predexon_id` string, nullable
      - `bid` number, nullable
      - `ask` number, nullable
    - `last_price` number, nullable
    - `volume` integer
    - `open_interest` integer
    - `dollar_volume` integer
    - `dollar_open_interest` integer
    - `event` KalshiEvent, required — Event info nested in Kalshi market.
      - `event_ticker` string, required
      - `series_ticker` string, nullable
      - `title` string
      - `subtitle` string
    - `created_at` string, nullable — ISO 8601 timestamp
    - `updated_at` string, nullable — ISO 8601 timestamp
  - `pagination` CursorPagination, required — Cursor-based pagination for endpoints that don't support offset.
    - `limit` integer, required — Requested limit
    - `count` integer, required — Number of items in current response
    - `pagination_key` string, nullable — Base64-encoded cursor for next page
    - `has_more` boolean, required — Whether there are more items available

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/predexon/apis/predexon-api.md) · [All operations](https://skmtc.net/predexon/apis/predexon-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/predexon/predexon-api/revisions/80a306fbdb39/schema)
