Endpoint Playground
Test Crawlora's Kalshi Multivariate 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/multivariate" \
-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 |
{
"code": 200,
"msg": "OK",
"data": {
"limit": 2,
"cursor": "next",
"source_url": "https://external-api.kalshi.com/trade-api/v2/events/multivariate?limit=2",
"fetched_at": "2026-06-07T14:00:00Z",
"events": [
{
"event_ticker": "KXMVEOSCARS-S2026FFFF07E1352",
"series_ticker": "KXMVEOSCARS",
"title": "Oscar for Best Actor?",
"sub_title": "MVE",
"category": "Exotics",
"mutually_exclusive": true,
"collateral_return_type": "MECNET"
}
]
}
}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 multivariate event rows from credential-free public market-data JSON. Kalshi's regular events endpoint excludes these MVE rows.
{
"code": 200,
"msg": "OK",
"data": {
"limit": 2,
"cursor": "next",
"source_url": "https://external-api.kalshi.com/trade-api/v2/events/multivariate?limit=2",
"fetched_at": "2026-06-07T14:00:00Z",
"events": [
{
"event_ticker": "KXMVEOSCARS-S2026FFFF07E1352",
"series_ticker": "KXMVEOSCARS",
"title": "Oscar for Best Actor?",
"sub_title": "MVE",
"category": "Exotics",
"mutually_exclusive": true,
"collateral_return_type": "MECNET"
}
]
}
}curl "https://api.crawlora.net/api/v1/kalshi/events/multivariate" \
-H "x-api-key: $CRAWLORA_API_KEY"