Skip to main content
POST
/
api
/
kalshi
/
markets
/
search
/kalshi/markets/search
curl --request POST \
  --url https://api.anysite.io/api/kalshi/markets/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "event_ticker": "<string>",
  "series_ticker": "<string>",
  "tickers": [
    "<string>"
  ],
  "min_close_ts": 1,
  "max_close_ts": 1
}
'
[
  {
    "ticker": "<string>",
    "@type": "@kalshi_market",
    "event_ticker": "<string>",
    "market_type": "<string>",
    "status": "<string>",
    "title": "<string>",
    "subtitle": "<string>",
    "yes_sub_title": "<string>",
    "no_sub_title": "<string>",
    "yes_bid": 123,
    "yes_ask": 123,
    "no_bid": 123,
    "no_ask": 123,
    "last_price": 123,
    "previous_price": 123,
    "previous_yes_bid": 123,
    "previous_yes_ask": 123,
    "yes_bid_size": 123,
    "yes_ask_size": 123,
    "volume": 123,
    "volume_24h": 123,
    "open_interest": 123,
    "liquidity": 123,
    "notional_value": 123,
    "floor_strike": 123,
    "strike_type": "<string>",
    "rules_primary": "<string>",
    "rules_secondary": "<string>",
    "result": "<string>",
    "expiration_value": "<string>",
    "settlement_value": 123,
    "can_close_early": true,
    "early_close_condition": "<string>",
    "settlement_timer_seconds": 123,
    "open_at": "<string>",
    "close_at": "<string>",
    "expiration_at": "<string>",
    "expected_expiration_at": "<string>",
    "latest_expiration_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "settled_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of markets to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
event_ticker
string | null

Return only markets that belong to this event

series_ticker
string | null

Return only markets that belong to this series

status
enum<string> | null

Filter markets by lifecycle status

Available options:
unopened,
open,
closed,
settled,
active
tickers
string[] | null

Return only this explicit set of market tickers

min_close_ts
integer | null

Only markets closing at or after this Unix timestamp (seconds)

Required range: x >= 0
max_close_ts
integer | null

Only markets closing at or before this Unix timestamp (seconds)

Required range: x >= 0

Response

Successful Response

ticker
string
required
@type
string
default:@kalshi_market
event_ticker
string | null
market_type
string | null
status
string | null
title
string | null
subtitle
string | null
yes_sub_title
string | null
no_sub_title
string | null
yes_bid
number | null
yes_ask
number | null
no_bid
number | null
no_ask
number | null
last_price
number | null
previous_price
number | null
previous_yes_bid
number | null
previous_yes_ask
number | null
yes_bid_size
integer | null
yes_ask_size
integer | null
volume
integer | null
volume_24h
integer | null
open_interest
integer | null
liquidity
number | null
notional_value
number | null
floor_strike
number | null
strike_type
string | null
rules_primary
string | null
rules_secondary
string | null
result
string | null
expiration_value
string | null
settlement_value
number | null
can_close_early
boolean | null
early_close_condition
string | null
settlement_timer_seconds
integer | null
open_at
string | null
close_at
string | null
expiration_at
string | null
expected_expiration_at
string | null
latest_expiration_at
string | null
created_at
string | null
updated_at
string | null
settled_at
string | null