Skip to main content
GET
/
kalshi
/
markets
cURL
curl --request GET \
  --url https://api.example.com/kalshi/markets
{
  "markets": [
    {
      "ticker": "<string>",
      "series_ticker": "<string>",
      "event_ticker": "<string>",
      "title": "<string>",
      "subtitle": "<string>",
      "category": "<string>",
      "status": "initialized",
      "open_time": "<string>",
      "close_time": "<string>",
      "expiration_time": "<string>",
      "yes_bid": 123,
      "yes_ask": 123,
      "no_bid": 123,
      "no_ask": 123,
      "last_price": 123,
      "volume": 123,
      "volume_24h": 123,
      "liquidity": 123,
      "open_interest": 123
    }
  ],
  "cursor": "<string>"
}

Query Parameters

series_ticker
string

Filter by series ticker (e.g., KXPREZ)

Example:

"KXPREZ"

event_ticker
string

Filter by event ticker

Example:

"KXPREZ-2025"

status
enum<string>

Filter by market status

Available options:
active,
closed,
settled
Example:

"active"

limit
string

Number of markets to return (max 200)

Example:

"20"

Response

Successfully retrieved markets

markets
object[]
required
cursor
string