Endpoint Playground
Test Crawlora's Kalshi Historical Market 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" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| ticker (path) | string | Yes | KXMVECROSSCATEGORY-S2026144E784A147-ED367B84557 | Kalshi historical market ticker |
{
"code": 200,
"msg": "OK",
"data": {
"market": {
"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 one normalized settled Kalshi historical market row from credential-free public market-data JSON.
{
"code": 200,
"msg": "OK",
"data": {
"market": {
"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/market/<ticker>" \
-H "x-api-key: $CRAWLORA_API_KEY"