Endpoint Playground
Test Crawlora's Kalshi Historical Markets 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/markets?mve_filter=exclude" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Rows to return, default 25, max 1000 | |
| cursor | string | No | Pagination cursor from a previous Kalshi response | |
| tickers | string | No | Comma-separated Kalshi market tickers. Mutually exclusive with event_ticker and series_ticker. | |
| event_ticker | string | No | Kalshi event ticker filter. Mutually exclusive with tickers and series_ticker. | |
| series_ticker | string | No | Kalshi series ticker filter. Mutually exclusive with tickers and event_ticker. | |
| mve_filter | string | No | exclude | Multivariate event filter |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 2,
"cursor": "next",
"markets": [
{
"ticker": "KXMVECROSSCATEGORY-S2026144E784A147-ED367B84557",
"event_ticker": "KXMVECROSSCATEGORY-S2026144E784A147",
"title": "yes Yes,yes MIN Wild",
"status": "finalized",
"last_price": 0.259,
"volume": 183,
"result": "no"
}
]
}
}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 settled Kalshi historical market rows from credential-free public market-data JSON. `tickers`, `event_ticker`, and `series_ticker` are mutually exclusive. The `mve_filter` enum accepts `exclude`.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 2,
"cursor": "next",
"markets": [
{
"ticker": "KXMVECROSSCATEGORY-S2026144E784A147-ED367B84557",
"event_ticker": "KXMVECROSSCATEGORY-S2026144E784A147",
"title": "yes Yes,yes MIN Wild",
"status": "finalized",
"last_price": 0.259,
"volume": 183,
"result": "no"
}
]
}
}curl "https://api.crawlora.net/api/v1/kalshi/historical/markets" \
-H "x-api-key: $CRAWLORA_API_KEY"