Skip to main content
GET
/
kalshi
/
market-price
/
{market_ticker}
Get Kalshi Market Price
curl --request GET \
  --url https://api.aisa.one/apis/v1/kalshi/market-price/{market_ticker} \
  --header 'Authorization: Bearer <token>'
{
  "yes": {
    "price": 0.75,
    "at_time": 1762164600
  },
  "no": {
    "price": 0.25,
    "at_time": 1762164600
  }
}
Market Price fetches the current or historical price for a Kalshi market identified by its market ticker. Returns prices for both the yes and no sides. When the at_time parameter is omitted, it returns the most real-time price available. When at_time is provided, it returns the historical market price at that specific timestamp. Best for: Real-time price lookups, historical price snapshots, tracking both sides of a binary market, building price charts. Endpoint: GET /kalshi/market-price/{market_ticker}

Example

curl -X GET "https://api.aisa.one/apis/v1/kalshi/market-price/KXNFLGAME-25AUG16ARIDEN-ARI?at_time=1762164600" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response

The response returns a yes object and a no object, each containing a price field (a number between 0 and 1 representing the dollar price) and an at_time field (Unix timestamp in seconds) indicating the point in time for which the price was fetched.

Authorizations

Authorization
string
header
required

Your AIsa API key as a Bearer token.

Path Parameters

market_ticker
string
required

The market ticker for the Kalshi market

Example:

"KXNFLGAME-25AUG16ARIDEN-ARI"

Query Parameters

at_time
integer

Optional Unix timestamp (in seconds) to fetch a historical market price. If not provided, returns the most real-time price available.

Example:

1762164600

Response

Market price response

yes
object
required

Yes side price information

no
object
required

No side price information