Endpoint Playground
Test Crawlora's Kalshi Events 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/events?status=open" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Rows to return, default 25, max 200 | |
| cursor | string | No | Pagination cursor from a previous Kalshi response | |
| series_ticker | string | No | Kalshi series ticker filter | |
| category | string | No | Kalshi category filter | |
| status | string | No | open | Event status filter |
| with_nested_markets | boolean | No | Include nested market rows when supported upstream | |
| with_milestones | boolean | No | Include event milestones when supported upstream | |
| min_close_ts | integer | No | Minimum event close Unix timestamp in seconds | |
| min_updated_ts | integer | No | Minimum event update Unix timestamp in seconds |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 3,
"cursor": "next",
"source_url": "https://external-api.kalshi.com/trade-api/v2/events?limit=3",
"fetched_at": "2026-06-07T14:00:00Z",
"events": [
{
"event_ticker": "KXELONMARS-99",
"series_ticker": "KXELONMARS",
"title": "Will Elon Musk visit Mars in his lifetime?",
"sub_title": "Before 2099",
"category": "World"
}
]
}
}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 event rows from credential-free public market-data JSON.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 3,
"cursor": "next",
"source_url": "https://external-api.kalshi.com/trade-api/v2/events?limit=3",
"fetched_at": "2026-06-07T14:00:00Z",
"events": [
{
"event_ticker": "KXELONMARS-99",
"series_ticker": "KXELONMARS",
"title": "Will Elon Musk visit Mars in his lifetime?",
"sub_title": "Before 2099",
"category": "World"
}
]
}
}curl "https://api.crawlora.net/api/v1/kalshi/events" \
-H "x-api-key: $CRAWLORA_API_KEY"