Skip to main content
POST
/
watchlists
/
create-from-tags
curl --request POST \
  --url https://api.nevua.markets/watchlists/create-from-tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Sports & Esports",
  "tags": [
    {
      "tagSlug": "sports",
      "include": true
    },
    {
      "tagSlug": "esports",
      "include": true
    }
  ],
  "searchMatchOperator": "OR",
  "automaticallyAddMatchingEvents": true
}
'
{
"watchListId": "507f1f77bcf86cd799439011",
"watchListName": "Sports & Entertainment",
"eventCount": 25,
"marketCount": 67
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
tags
object[]
required
searchMatchOperator
enum<string>
required
Available options:
AND,
OR
automaticallyAddMatchingEvents
boolean

Response

Watchlist created successfully

watchListId
string
required
watchListName
string
required
eventCount
number
required
marketCount
number
required