Discover/OddsJam API
live

OddsJam APIoddsjam.com

Access MLB moneyline odds, futures markets, team rosters, and schedules across multiple sportsbooks via the OddsJam API. Paginated, state-filtered endpoints.

Endpoint health
verified 7d ago
get_mlb_games_odds
get_mlb_game_moneyline_detail
get_mlb_futures_odds
get_game_odds_by_market
get_mlb_teams
8/8 passing latest checkself-healing
Endpoints
8
Updated
21d ago

What is the OddsJam API?

This API exposes 8 endpoints covering OddsJam MLB data: live and upcoming game odds, per-sportsbook moneyline breakdowns, full season schedules, team rosters with injury data, and futures markets. The get_mlb_screen_market endpoint returns a grid of odds across every available sportsbook for every current game in a single call, while get_mlb_game_moneyline_detail gives per-book prices with timestamps for a specific game ID.

Try it
Page number for pagination.
Two-letter US state code for regional odds availability (e.g. 'NY', 'UT', 'NJ').
api.parse.bot/scraper/d90bd944-53f7-4f8a-9c37-681f9c687dc6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d90bd944-53f7-4f8a-9c37-681f9c687dc6/get_mlb_games_odds?page=1&state=NY' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace oddsjam-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""
OddsJam MLB API - Usage Example

Get your API key from: https://parse.bot/settings
"""
from parse_apis.oddsjam_mlb_api import OddsJam, MarketName, NotFoundError

oddsjam = OddsJam()

# List upcoming/live MLB games with best moneyline odds
for game in oddsjam.games.list(state="NY", limit=5):
    print(game.home_team, "vs", game.away_team, game.status, game.is_live)

# Drill into a single game's odds by market using the MarketName enum
game = oddsjam.games.list(state="NY", limit=1).first()
if game:
    for odd in game.odds.by_market(market_name=MarketName.MONEYLINE, limit=3):
        print(odd.name, odd.price, odd.home_or_away, odd.market_name)

# Get team details — roster, stats, injuries
try:
    detail = oddsjam.teamdetails.get(team_slug="new-york-yankees")
    print(detail.team_name, detail.team_abbreviation)
    for player in detail.players[:3]:
        print(player.player_name, player.position, player.age)
except NotFoundError as exc:
    print(f"Team not found: {exc}")

# Browse the schedule for venue and starter info
for scheduled in oddsjam.scheduledgames.list(limit=3):
    print(scheduled.description, scheduled.venue_name, scheduled.home_starter)

# Cross-book odds screen
screen = oddsjam.oddsscreens.get(state="NY", market_name=MarketName.MONEYLINE)
print(screen.books[:5])

# Futures markets (World Series winner, division winners, etc.)
for market in oddsjam.futuresmarkets.list(state="NY", limit=3):
    print(market.name, market.future_type, market.start_date)

print("exercised: games.list / game.odds.by_market / teamdetails.get / scheduledgames.list / oddsscreens.get / futuresmarkets.list")
All endpoints · 8 totalmissing one? ·

Fetch upcoming and live MLB games with best moneyline odds, team names, and start times. Each event includes best odds across sportsbooks for moneyline, spread, and total markets. Paginates via integer page counter. Results include both live in-progress games and upcoming scheduled games.

Input
ParamTypeDescription
pageintegerPage number for pagination.
statestringTwo-letter US state code for regional odds availability (e.g. 'NY', 'UT', 'NJ').
Response
{
  "type": "object",
  "fields": {
    "events": "array of game objects with team names, start times, best odds, scores, and game status",
    "leagues": "array of available league filter strings"
  },
  "sample": {
    "data": {
      "events": [
        {
          "id": "80389-36174-2026-06-10-12",
          "sport": "baseball",
          "league": "MLB",
          "status": "live",
          "is_live": true,
          "away_team": "Washington Nationals",
          "best_odds": {
            "moneyline": {
              "best_price_away": 100,
              "best_price_home": 100,
              "best_sports_book_away": "Rebet",
              "best_sports_book_home": "Fliff"
            }
          },
          "home_team": "San Francisco Giants",
          "start_date": "2026-06-10T15:45:00-04:00",
          "away_team_nickname": "WAS",
          "home_team_nickname": "SF"
        }
      ],
      "leagues": [
        "All",
        "College Baseball",
        "CPBL"
      ]
    },
    "status": "success"
  }
}

About the OddsJam API

Game Odds and Moneyline Data

get_mlb_games_odds returns paginated arrays of game objects that include team names, start times, best available moneyline odds, current scores, and game status. Each object carries an id field used as game_id in downstream endpoints. get_mlb_game_moneyline_detail and get_game_odds_by_market both accept that game_id and return per-sportsbook odds arrays with price, sportsbook, team_name, and bet_details. The root_info object on the detail endpoint also includes home_team, away_team, game_start_date, and market_name.

Odds Comparison and Futures

get_mlb_screen_market is built for side-by-side comparison: its response contains a books array of sportsbook name strings and a games object keyed by game_id, with nested odds per sportsbook. get_mlb_futures_odds works in two modes — called without future_id it returns a list of available futures markets (each with an id); called with a future_id it returns detailed odds objects for that specific market. Both game-odds and futures endpoints accept an optional state parameter (two-letter US state code) to filter to regionally available sportsbooks.

Schedule and Team Data

get_mlb_schedule returns paginated schedule objects covering matchup names, venues, starting pitchers, and broadcast info. The optional team parameter filters results to a single team or returns all when set to 'All'. get_mlb_teams returns all MLB teams organized by league and division with id, team_name, conference, division, and logo fields. get_mlb_team_odds takes a team_slug (e.g. 'new-york-yankees') and returns a detailed object including players, injuries, team_stats, and the team's upcoming schedule.

Reliability & maintenanceVerified

The OddsJam API is a managed, monitored endpoint for oddsjam.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when oddsjam.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official oddsjam.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
8/8 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a moneyline odds comparison table by calling get_mlb_screen_market and rendering the books × games grid
  • Identify the best-price sportsbook for a specific game using get_mlb_game_moneyline_detail and sorting by price
  • Display a full team page with roster, injuries, and stats pulled from get_mlb_team_odds using the team slug
  • Populate a futures betting dashboard by listing available markets via get_mlb_futures_odds then drilling into individual market odds with future_id
  • Filter odds to state-legal sportsbooks by passing a state code to any odds endpoint
  • Show starting pitchers and venue details for upcoming games using get_mlb_schedule with optional team filtering
  • Seed a team picker UI with all divisions and conferences from get_mlb_teams
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does OddsJam have an official developer API?+
OddsJam offers a paid odds API for developers at https://oddsjam.com/odds-api, focused on professional and commercial use. The Parse API surfaces MLB-specific data from the OddsJam platform in a structured, ready-to-query format.
How does the `state` parameter affect the odds returned?+
Passing a two-letter US state code (e.g. 'NY', 'UT') to endpoints like get_mlb_games_odds, get_mlb_game_moneyline_detail, or get_mlb_screen_market restricts the sportsbooks in the response to those legally available in that state. Omitting the parameter returns all available books without regional filtering.
What data does `get_mlb_team_odds` return beyond odds?+
get_mlb_team_odds returns a data object that includes players (roster), injuries, team_stats, and the team's upcoming schedule, in addition to core team identifiers. It does not return individual game odds; use get_mlb_game_moneyline_detail with a specific game_id for per-game sportsbook prices.
Does the API cover run line or totals (over/under) markets?+
Not currently. The API covers moneyline markets for games and futures markets; get_game_odds_by_market documents only 'moneyline' as a supported market_name. You can fork this API on Parse and revise it to add endpoints targeting run line or totals markets.
Are historical game odds available through this API?+
Not currently. The endpoints focus on upcoming and live games — get_mlb_games_odds returns events with current status and best odds, and get_mlb_schedule covers the forward-looking schedule. You can fork this API on Parse and revise it to add a historical odds endpoint if that data is accessible on OddsJam.
Page content last updated . Spec covers 8 endpoints from oddsjam.com.
Related APIs in SportsSee all →
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
oddsportal.com API
Track sports betting odds, matches, and results across multiple sports and leagues in real-time, while viewing team standings and match details to stay informed on upcoming games. Access comprehensive betting data and historical results from OddsPortal to compare odds and analyze sports outcomes.
oddschecker.com API
Compare betting odds across multiple bookmakers for a wide range of sports, markets, and events on Oddschecker. Retrieve match details, race cards, market outcomes, and bookmaker-by-bookmaker odds to identify the best available prices.
oh.bet365.com API
Retrieve current betting odds from Bet365 for major sports leagues, including spread, moneyline, and over/under totals. Compare betting lines across sports such as NBA, MLB, NHL, soccer, and tennis.
oddspedia.com API
Find profitable betting opportunities and compare real-time odds across dozens of bookmakers to identify sure bets, value bets, and dropping odds for various sports. Filter matches by sport, league, and region to make informed betting decisions with comprehensive odds comparisons and match information.
sportsbookreview.com API
Compare sportsbooks and their ratings, view real-time betting odds across sports and specific matchups, monitor how lines move over time, and discover expert picks and promotions all in one place. Make more informed betting decisions by accessing comprehensive sportsbook reviews, odds comparisons, and professional analysis.
ballparkpal.com API
Get MLB prediction data including the most likely outcomes for batters, pitchers, teams, and games across 22 statistical categories with probability scores and betting lines. Search available dates and browse prediction categories to power your baseball analysis and betting decisions with simulation-based forecasts.
asianbetsoccer.com API
Track live soccer match scores and upcoming games while monitoring Asian handicap odds from multiple bookmakers to get instant alerts when betting lines match your criteria. Access real-time odds across all available leagues and bookmakers in one place.