Endpoint Playground
Test Crawlora's Kalshi Event History API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/kalshi/event/KXELONMARS-99/history" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| event_ticker (path) | string | Yes | KXELONMARS-99 | Kalshi event ticker |
| series_ticker | string | No | Kalshi series ticker. Defaults to the event ticker prefix before the last dash. | |
| start_ts | integer | No | Unix start timestamp in seconds. Defaults to 7 days ago. | |
| end_ts | integer | No | Unix end timestamp in seconds. Defaults to now. | |
| period_interval | integer | No | Candlestick interval in minutes. Default: 1440. | |
| include_latest_before_start | boolean | No | Include the latest candle before start_ts when supported upstream. |
{
"code": 200,
"msg": "OK",
"data": {
"event_ticker": "KXELONMARS-99",
"series_ticker": "KXELONMARS",
"market_tickers": [
"KXELONMARS-99"
],
"start_ts": 1780286400,
"end_ts": 1780804800,
"period_interval": 1440,
"markets": [
{
"ticker": "KXELONMARS-99",
"series_ticker": "KXELONMARS",
"candlesticks": [
{
"end_period_ts": 1780286400,
"end_period_at": "2026-06-01T00:00:00Z",
"open_interest": 32980.77,
"volume": 7,
"price": {
"close": 0.08
}
}
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized Kalshi candlesticks grouped by market for one event from credential-free public market-data JSON.
{
"code": 200,
"msg": "OK",
"data": {
"event_ticker": "KXELONMARS-99",
"series_ticker": "KXELONMARS",
"market_tickers": [
"KXELONMARS-99"
],
"start_ts": 1780286400,
"end_ts": 1780804800,
"period_interval": 1440,
"markets": [
{
"ticker": "KXELONMARS-99",
"series_ticker": "KXELONMARS",
"candlesticks": [
{
"end_period_ts": 1780286400,
"end_period_at": "2026-06-01T00:00:00Z",
"open_interest": 32980.77,
"volume": 7,
"price": {
"close": 0.08
}
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/kalshi/event/<event_ticker>/history" \
-H "x-api-key: $CRAWLORA_API_KEY"