toa_sports_odds {oddsapiR} | R Documentation |
Find odds for the sports which are accessible through the Odds API
Description
Get the odds for the sports which the Odds API provides coverage
try(toa_sports_odds(sport_key = 'baseball_mlb', regions = 'us', markets = 'spreads', odds_format = 'decimal', date_format = 'iso'))
Usage
toa_sports_odds(
sport_key,
regions = "us",
markets = "spreads",
odds_format = "decimal",
date_format = "iso"
)
Arguments
sport_key |
The |
regions |
The region to pull odds from. Options include:
|
markets |
The type of odds to return. Multiple can be specified if comma delimited. Options include:
|
odds_format |
The format in which to return odds. Options include:
|
date_format |
Date format. Options include:
|
Value
Sports for which The Odds API provides betting information for as a tibble:
col_name | types |
id | character |
sport_key | character |
sport_title | character |
commence_time | character |
home_team | character |
away_team | character |
bookmaker_key | character |
bookmaker | character |
last_update | character |
market_key | character |
outcomes_name | character |
outcomes_price | numeric |
outcomes_point | numeric |
Examples
try(toa_sports_odds(sport_key = 'basketball_ncaab',
regions = 'us',
markets = 'spreads',
odds_format = 'decimal',
date_format = 'iso'))
[Package oddsapiR version 0.0.3 Index]