Overview
Novig offers futures markets for NBA, MLB, NHL, WNBA, Tennis, and special events like the Olympics. This guide explains how futures are structured and how to integrate them into your platform.Event Types
TheEvent class has a type field that can be:
| Type | Description |
|---|---|
Game | Standard game/match events (what you currently support) |
Future | Futures markets (championship winners, MVPs, etc.) |
Tournament | Tournament-level events |
Filtering by Event Type
Add thetype filter to your queries:
Querying Futures
Key Differences from Game Events
Future type events do not have a game field.scheduled_start and league fields are now available directly inside Event for futures:
These fields still exist in
Event.game for backwards compatibility with Game events.Example Futures Response
Futures Market Types
Team Futures
Markets related to a specific team (e.g., “Cavs to win Eastern Conference”) have a reference to the
competitor directly from the market.Player Futures
Markets related to a specific player (e.g., “Nikola Jokic Finals MVP”) have a reference to the
player directly from the market.Series Futures
Series futures involving an outcome for each team have references to the relevant
competitor directly from each outcome.Placeholder Events
Some futures exist but have no markets. These are placeholders that will likely be supported in the future.
Understanding Futures Order Book
When looking at orders in futures markets, the same bid logic applies:| Scenario | Interpretation |
|---|---|
| BID on NO at 0.36 (+178), qty 45000 | Someone risks $162 to win $288 |
| Available liquidity | Shows on YES -178, $288 to win $162 |
Special Events
Olympics
Novig launches special event markets like Olympics Hockey. These use dedicated leagues:- Game events for each head-to-head matchup with MONEY, SPREAD, and TOTAL markets
- Futures events with CHAMPIONSHIP_WINNER markets for each country
Best Practices
Handle Empty Markets
Some future events may have no markets - these are placeholders for future support.
Check Competitor/Player References
Use the
competitor and player fields on markets and outcomes to properly identify the subject of futures bets.