This endpoint creates a live watchlist by specifying which tags to monitor:
automaticallyAddMatchingEvents is set to true (default).In order to receive alerts when new events and markets are created or existing ones are closed, you can create a New or closed events and markets subscription for the watchlist.
Uses explicit includeTags/excludeTags arrays:
{
"name": "Sports & Esports",
"includeTags": ["sports", "esports"],
"excludeTags": ["politics"],
"matchOperator": "OR",
"automaticallyAddMatchingEvents": true
}
Uses tags array with include boolean:
{
"name": "Sports & Esports",
"tags": [
{"tagSlug": "sports", "include": true},
{"tagSlug": "esports", "include": true}
],
"searchMatchOperator": "OR"
}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.