Skip to main content
GET
/
markets
/
exclusion-groups
Get Exclusion Groups
curl --request GET \
  --url https://api.totalis.trade/markets/exclusion-groups \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "exclusion_groups": [
      {
        "name": "<string>",
        "tickers": [
          "<string>"
        ],
        "description": "<string>"
      }
    ],
    "conflict_mode": "<string>"
  }
}
Prefer exclusion_keys for parlay building. Every market returned by List Markets and Get Market now carries an exclusion_keys array — two markets conflict if (and only if) their keys intersect. That covers the full rule set (same-game sports correlation, threshold ladders, Polymarket sub-events) as a simple set-intersection, with nothing to resolve client-side. This endpoint returns only the static cross-series groups and is retained for compatibility.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Exclusion groups configuration

data
object