Endpoint Playground
Test Crawlora's Kalshi Event 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" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| event_ticker (path) | string | Yes | KXELONMARS-99 | Kalshi event ticker |
{
"code": 200,
"msg": "OK",
"data": {
"event": {
"event_ticker": "KXELONMARS-99",
"series_ticker": "KXELONMARS",
"title": "Will Elon Musk visit Mars in his lifetime?",
"sub_title": "Before 2099",
"category": "World"
},
"markets": [
{
"ticker": "KXELONMARS-99",
"event_ticker": "KXELONMARS-99",
"title": "Will Elon Musk visit Mars before Aug 1, 2099?",
"status": "active",
"last_price": 0.08
}
],
"source_url": "https://external-api.kalshi.com/trade-api/v2/events/KXELONMARS-99",
"fetched_at": "2026-06-07T14:00:00Z"
}
}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 Kalshi event row and its normalized markets from credential-free public market-data JSON.
{
"code": 200,
"msg": "OK",
"data": {
"event": {
"event_ticker": "KXELONMARS-99",
"series_ticker": "KXELONMARS",
"title": "Will Elon Musk visit Mars in his lifetime?",
"sub_title": "Before 2099",
"category": "World"
},
"markets": [
{
"ticker": "KXELONMARS-99",
"event_ticker": "KXELONMARS-99",
"title": "Will Elon Musk visit Mars before Aug 1, 2099?",
"status": "active",
"last_price": 0.08
}
],
"source_url": "https://external-api.kalshi.com/trade-api/v2/events/KXELONMARS-99",
"fetched_at": "2026-06-07T14:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/kalshi/event/<event_ticker>" \
-H "x-api-key: $CRAWLORA_API_KEY"