Endpoint Playground
Test Crawlora's Kalshi Series Detail 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/series/KXELONMARS" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| series_ticker (path) | string | Yes | KXELONMARS | Kalshi series ticker |
{
"code": 200,
"msg": "OK",
"data": {
"series": {
"series_ticker": "KXELONMARS",
"title": "Will Elon Musk visit Mars in his lifetime?",
"category": "Politics",
"frequency": "custom",
"fee_multiplier": 1,
"settlement_sources": [
{
"name": "The Guardian",
"url": "https://www.theguardian.com"
}
]
},
"source_url": "https://external-api.kalshi.com/trade-api/v2/series/KXELONMARS",
"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 series row from credential-free public market-data JSON.
{
"code": 200,
"msg": "OK",
"data": {
"series": {
"series_ticker": "KXELONMARS",
"title": "Will Elon Musk visit Mars in his lifetime?",
"category": "Politics",
"frequency": "custom",
"fee_multiplier": 1,
"settlement_sources": [
{
"name": "The Guardian",
"url": "https://www.theguardian.com"
}
]
},
"source_url": "https://external-api.kalshi.com/trade-api/v2/series/KXELONMARS",
"fetched_at": "2026-06-07T14:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/kalshi/series/<series_ticker>" \
-H "x-api-key: $CRAWLORA_API_KEY"