sportsbookreview.com APIsportsbookreview.com ↗
Access betting odds, sportsbook reviews, line movement history, expert picks, and promos from SportsbookReview.com via a structured REST API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/20b4d472-b50e-49ea-8045-18fcbd7546b9/get_sportsbook_list' \ -H 'X-API-Key: $PARSE_API_KEY'
Get a list of all reviewed sportsbooks with names, slugs, and URLs. Returns sportsbooks featured on the betting-sites page.
No input parameters required.
{
"type": "object",
"fields": {
"sportsbooks": "array of sportsbook objects each containing name, slug, and url"
},
"sample": {
"data": {
"sportsbooks": [
{
"url": "https://www.sportsbookreview.com/betting-sites/betmgm-sportsbook/",
"name": "BetMGM review",
"slug": "betmgm-sportsbook"
},
{
"url": "https://www.sportsbookreview.com/betting-sites/fanduel/",
"name": "FanDuel review",
"slug": "fanduel"
},
{
"url": "https://www.sportsbookreview.com/betting-sites/draftkings/",
"name": "DraftKings review",
"slug": "draftkings"
}
]
},
"status": "success"
}
}About the sportsbookreview.com API
The SportsbookReview API exposes 7 endpoints covering betting odds across major sports, sportsbook ratings, line movement history, expert picks, and promotional offers. The get_odds_by_sport endpoint returns spread, moneyline, and totals data for all games on a given date, while get_line_history tracks how odds have moved across sportsbooks over time — giving you the raw data to build odds comparison tools or betting research workflows.
Odds and Matchup Data
The get_odds_by_sport endpoint accepts a sport slug (e.g., nfl-football, nba-basketball, mlb-baseball) and an optional date in YYYY-MM-DD format, returning an oddsTables array with gameRows containing per-game odds across multiple sportsbooks. Game IDs from those rows feed directly into get_game_matchup_odds, which returns a matchupModel with gameView, oddsViews, matchupView, and a sportsbooks object — including consensus betting percentages and best available odds across books.
Line Movement and History
get_line_history takes the same sport and game_id parameters and returns a lineHistoryModel containing timestamped historical odds per sportsbook across moneyline, spread, and total markets. This lets you reconstruct how a line opened, moved, and settled at any tracked book, which is useful for sharp-money analysis or building line movement alerts.
Sportsbook Reviews and Promos
get_sportsbook_list returns all reviewed sportsbooks with their slugs, which you can pass to get_sportsbook_review for structured data including an overall rating, summary text, an array of highlights, and a quick_facts object. The get_promos_by_sportsbook endpoint returns the current bonus headline, promo_code string (or 'No code required'), and the direct url for a given sportsbook — useful for affiliate or comparison pages.
Expert Picks
get_picks_by_sport accepts a sport slug (e.g., nfl, nba, mlb) and returns an array of expert pick articles with title, link, and summary fields. This covers the editorial analysis side of the site and is separate from the odds and line data.
- Build a cross-book odds comparison table using
get_odds_by_sportspread and moneyline fields for NFL or NBA games. - Track line movement on a specific game with
get_line_historyto identify timing patterns in odds changes. - Aggregate sportsbook ratings and
quick_factsfromget_sportsbook_reviewto power a side-by-side book comparison page. - Display current promo codes and bonus offers from
get_promos_by_sportsbookon an affiliate landing page. - Pull expert pick articles via
get_picks_by_sportto populate a sports betting newsletter or content feed. - Use
get_game_matchup_oddsconsensus percentages to surface public betting splits for a given matchup. - Automate daily odds snapshots by scheduling
get_odds_by_sportcalls with a date parameter across multiple sport slugs.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does SportsbookReview have an official public developer API?+
What does `get_game_matchup_odds` return beyond basic odds?+
get_game_matchup_odds returns a matchupModel that includes oddsViews (odds per sportsbook), matchupView (consensus betting percentages), gameView (game metadata), and a sportsbooks object listing the books tracked for that game. You get both the best available line and the public betting split in a single call.Does `get_line_history` cover all bet types?+
get_line_history returns historical odds in the oddsViews array covering moneyline, spread, and total markets, each with timestamps. Coverage depends on which sportsbooks SportsbookReview tracks for a given game; not every book appears for every market.Are live in-game odds available through the API?+
Does the API cover player props or futures markets?+
get_odds_by_sport and get_game_matchup_odds. Player props and futures (e.g., season win totals, championship odds) are not currently included. You can fork the API on Parse and revise it to add endpoints targeting those markets.