Skip to main content
GET
/
markets
List Markets
curl --request GET \
  --url https://api.totalis.trade/markets
{
  "markets": [
    {
      "ticker": "<string>",
      "event_ticker": "<string>",
      "series_ticker": "<string>",
      "series_title": "<string>",
      "title": "<string>",
      "subtitle": "<string>",
      "category": "<string>",
      "status": "<string>",
      "volume": 123,
      "volume_24h": 123,
      "open_interest": 123,
      "yes_bid": 123,
      "yes_ask": 123,
      "no_bid": 123,
      "no_ask": 123,
      "last_price": 123,
      "open_time": "2023-11-07T05:31:56Z",
      "close_time": "2023-11-07T05:31:56Z",
      "expiration_time": "2023-11-07T05:31:56Z",
      "kalshi_url": "<string>",
      "synced_at": "2023-11-07T05:31:56Z"
    }
  ],
  "count": 123,
  "category": "<string>",
  "next_cursor": "<string>",
  "has_more": true
}

Query Parameters

category
string
default:all

Filter by market category. Use all or omit to return all categories.

limit
integer
default:50

Maximum number of markets to return

Required range: 1 <= x <= 500
cursor
string

Pagination cursor (ticker-based). Use next_cursor from the previous response.

Response

List of cached markets

markets
object[]
count
integer

Number of markets returned

category
string

Category filter applied

next_cursor
string | null

Cursor for the next page of results

has_more
boolean

Whether more results are available