Skip to main content

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

The Event class has a type field that can be:
To avoid collisions between Games and Futures, modify your existing queries to explicitly filter on event type.

Filtering by Event Type

Add the type filter to your queries:

Querying Futures

Key Differences from Game Events

Future type events do not have a game field.
The 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:
A BID order represents what someone wants to BUY, so it appears as available liquidity on the opposite outcome.

Special Events

Olympics

Novig launches special event markets like Olympics Hockey. These use dedicated leagues:
Olympics events include:
  • 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

1

Filter Explicitly

Always filter by type to separate Game and Future events in your queries.
2

Handle Empty Markets

Some future events may have no markets - these are placeholders for future support.
3

Check Competitor/Player References

Use the competitor and player fields on markets and outcomes to properly identify the subject of futures bets.
4

Monitor New Leagues

Watch for announcements about new leagues and special events being added.