Endpoint Playground
Test Crawlora's Kalshi Historical Market 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/historical/market/KXMVECROSSCATEGORY-S2026144E784A147-ED367B84557/history" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| ticker (path) | string | Yes | KXMVECROSSCATEGORY-S2026144E784A147-ED367B84557 | Kalshi historical market ticker |
| 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. |
{
"code": 200,
"msg": "OK",
"data": {
"ticker": "KXMVECROSSCATEGORY-S2026144E784A147-ED367B84557",
"start_ts": 1775602800,
"end_ts": 1775606400,
"period_interval": 60,
"candlesticks": [
{
"end_period_ts": 1775606400,
"end_period_at": "2026-04-07T23:00:00Z",
"open_interest": 183,
"volume": 183,
"price": {
"close": 0.259
}
}
]
}
}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 for one settled historical market from credential-free public market-data JSON.
{
"code": 200,
"msg": "OK",
"data": {
"ticker": "KXMVECROSSCATEGORY-S2026144E784A147-ED367B84557",
"start_ts": 1775602800,
"end_ts": 1775606400,
"period_interval": 60,
"candlesticks": [
{
"end_period_ts": 1775606400,
"end_period_at": "2026-04-07T23:00:00Z",
"open_interest": 183,
"volume": 183,
"price": {
"close": 0.259
}
}
]
}
}curl "https://api.crawlora.net/api/v1/kalshi/historical/market/<ticker>/history" \
-H "x-api-key: $CRAWLORA_API_KEY"