# Premium Odds
# GET All Premium Odds
use SportmonksFootballApi;
SportmonksFootballApi::premiumOdd()->all();
# GET Premium Odds by Fixture ID
use SportmonksFootballApi;
SportmonksFootballApi::premiumOdd()->byFixtureId($fixtureId);
# GET Premium Odds by Fixture ID and Bookmaker ID
use SportmonksFootballApi;
SportmonksFootballApi::premiumOdd()->byFixtureIdAndBookmakerId($fixtureId, $bookmakerId);
# GET Premium Odds by Fixture ID and Market ID
use SportmonksFootballApi;
SportmonksFootballApi::premiumOdd()->byFixtureIdAndMarketId($fixtureId, $marketId);
# GET Updated Premium Odds Between Time Range
use SportmonksFootballApi;
SportmonksFootballApi::premiumOdd()->updatedBetweenTimeRange($fromTimestamp, $toTimestamp);
# GET Updated Historical Odds Between Time Range
use SportmonksFootballApi;
SportmonksFootballApi::premiumOdd()->historicalUpdatedBetweenTimeRange($fromTimestamp, $toTimestamp);
# GET All Historical Odds
use SportmonksFootballApi;
SportmonksFootballApi::premiumOdd()->allHistorical();
← Inplay Odds Markets →