Skip to main content
GET
/
gateway
/
v1
/
prediction-market
/
kalshi
/
ranking
Kalshi Market Ranking
curl --request GET \
  --url https://api.ask.surf/gateway/v1/prediction-market/kalshi/ranking
{
  "data": [
    {
      "event_ticker": "<string>",
      "last_day_open_interest": 123,
      "market_ticker": "<string>",
      "notional_volume_usd": 123,
      "open_interest": 123,
      "payout_type": "<string>",
      "status": "<string>",
      "title": "<string>",
      "total_volume": 123,
      "category": "<string>",
      "close_time": 123,
      "end_time": 123,
      "event_title": "<string>",
      "result": "<string>",
      "start_time": 123,
      "subcategory": "<string>"
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "$schema": "<string>"
}

Query Parameters

sort_by
enum<string>
default:notional_volume_usd

Field to sort results by

Available options:
notional_volume_usd,
open_interest
Example:

"notional_volume_usd"

order
enum<string>
default:desc

Sort order

Available options:
asc,
desc
Example:

"desc"

status
enum<string>
default:active

Market status filter: active, closed, determined, disputed, finalized, inactive, or initialized

Available options:
active,
closed,
determined,
disputed,
finalized,
inactive,
initialized
Example:

"active"

category
enum<string>

Filter by category

Available options:
crypto,
culture,
economics,
financials,
politics,
stem,
sports,
unknown
Example:

"crypto"

limit
integer<int64>
default:20

Results per page

Required range: 1 <= x <= 100
Example:

20

offset
integer<int64>
default:0

Pagination offset

Required range: x >= 0
Example:

0

Response

OK

data
object[] | null
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/DataResponseKalshiMarketItem.json"