curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/markets/{ticker}
{
"market": {
"ticker": "<string>",
"event_ticker": "<string>",
"market_type": "<string>",
"title": "<string>",
"subtitle": "<string>",
"yes_sub_title": "<string>",
"no_sub_title": "<string>",
"open_time": "2023-11-07T05:31:56Z",
"close_time": "2023-11-07T05:31:56Z",
"expiration_time": "2023-11-07T05:31:56Z",
"latest_expiration_time": "2023-11-07T05:31:56Z",
"settlement_timer_seconds": 123,
"status": "<string>",
"response_price_units": "<string>",
"notional_value": 123,
"tick_size": 123,
"yes_bid": 123,
"yes_ask": 123,
"no_bid": 123,
"no_ask": 123,
"last_price": 123,
"previous_yes_bid": 123,
"previous_yes_ask": 123,
"previous_price": 123,
"volume": 123,
"volume_24h": 123,
"liquidity": 123,
"open_interest": 123,
"result": "<string>",
"can_close_early": true,
"expiration_value": "<string>",
"category": "<string>",
"risk_limit_cents": 123,
"rules_primary": "<string>",
"rules_secondary": "<string>"
}
}
Endpoint for getting data about a specific market by its ticker. A market represents a specific binary outcome within an event that users can trade on (e.g., “Will candidate X win?”). Markets have yes/no positions, current prices, volume, and settlement rules.
curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/markets/{ticker}
{
"market": {
"ticker": "<string>",
"event_ticker": "<string>",
"market_type": "<string>",
"title": "<string>",
"subtitle": "<string>",
"yes_sub_title": "<string>",
"no_sub_title": "<string>",
"open_time": "2023-11-07T05:31:56Z",
"close_time": "2023-11-07T05:31:56Z",
"expiration_time": "2023-11-07T05:31:56Z",
"latest_expiration_time": "2023-11-07T05:31:56Z",
"settlement_timer_seconds": 123,
"status": "<string>",
"response_price_units": "<string>",
"notional_value": 123,
"tick_size": 123,
"yes_bid": 123,
"yes_ask": 123,
"no_bid": 123,
"no_ask": 123,
"last_price": 123,
"previous_yes_bid": 123,
"previous_yes_ask": 123,
"previous_price": 123,
"volume": 123,
"volume_24h": 123,
"liquidity": 123,
"open_interest": 123,
"result": "<string>",
"can_close_early": true,
"expiration_value": "<string>",
"category": "<string>",
"risk_limit_cents": 123,
"rules_primary": "<string>",
"rules_secondary": "<string>"
}
}
Market ticker - unique identifier for the specific market
The response is of type object
.