Searching for Events
Pages for Surebets, Middles and Valuebets all contain a search field in the upper panel. This field is intended for quick search of sports events. Just put in any part of the name and press the Enter key or the Filter button:
The results will include surebets/middles/valuebets with at least one team matching the search query, for any of the selected bookmakers. Note that even if different bookmakers name the team differently, these variations will still be found and displayed (since the back-end search is performed across all the available bookmakers, not just the selected ones).
If the query contains tournament:
then the text after it will be used to search by tournament name, for example:
- Tournament contains the word England:
tournament: England
- Team contains the word Arsenal:
Arsenal
- Tournament contains England and Team contains Arsenal:
tournament:England Arsenal
- Tournament contains Asian Cup:
tournament:"Asian Cup"
If the query begins with the symbol ~
, then basic possibilities of regular expressions will become available. For example, the query:
- contains Sweden or Russia:
~(Sweden|Russia)
- begins with Ireland:
~^Ireland
- contains numbers 20, 21, 22 or 23:
~2[0-3]
- contains Ireland and contains North:
~(.*Ireland.*)&(.*North.*)
- contains Ireland and doesn’t contain North:
~^(.*Ireland.*)&~(.*North.*)$
- for the tournament contains NHL or NBA:
tournament:~(NBA|NHL)