Endpoint Playground
Test Crawlora's Kalshi 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/markets?status=unopened" \
-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 | |
| event_ticker | string | No | Kalshi event ticker filter | |
| series_ticker | string | No | Kalshi series ticker filter | |
| status | string | No | unopened | Market status filter |
| ticker | string | No | Kalshi market ticker filter |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 3,
"source_url": "https://external-api.kalshi.com/trade-api/v2/markets?limit=3",
"fetched_at": "2026-06-07T14:00:00Z",
"markets": [
{
"ticker": "KXELONMARS-99",
"event_ticker": "KXELONMARS-99",
"title": "Will Elon Musk visit Mars before Aug 1, 2099?",
"status": "active",
"last_price": 0.08,
"yes_bid": 0.08,
"yes_ask": 0.1,
"volume": 94840.88
}
]
}
}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 market rows from credential-free public market-data JSON. The `status` enum accepts `unopened`, `open`, `closed`, and `settled`.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 3,
"source_url": "https://external-api.kalshi.com/trade-api/v2/markets?limit=3",
"fetched_at": "2026-06-07T14:00:00Z",
"markets": [
{
"ticker": "KXELONMARS-99",
"event_ticker": "KXELONMARS-99",
"title": "Will Elon Musk visit Mars before Aug 1, 2099?",
"status": "active",
"last_price": 0.08,
"yes_bid": 0.08,
"yes_ask": 0.1,
"volume": 94840.88
}
]
}
}curl "https://api.crawlora.net/api/v1/kalshi/markets" \
-H "x-api-key: $CRAWLORA_API_KEY"