Mygamesim APImygamesim.com ↗
Get AI-powered MLB game predictions, simulation results, betting lines, and projected scores to inform your fantasy baseball decisions and sports betting strategy. Browse upcoming predictions or look up specific games to access detailed forecasts from MyGameSim's advanced simulator.
curl -X GET 'https://api.parse.bot/scraper/3732424f-3956-4e06-9934-96e78bc823c4/list_predictions?date=2026-08-29' \ -H 'X-API-Key: $PARSE_API_KEY'
Lists all MLB game predictions for a given date, including predicted winners, scores, margins, and betting odds summaries. Returns one entry per scheduled game. When date is omitted, defaults to today's games.
| Param | Type | Description |
|---|---|---|
| date | string | Date for predictions in ISO format YYYY-MM-DD. When omitted, returns today's games. |
{
"type": "object",
"fields": {
"date": "string — the date of the predictions in YYYY-MM-DD format",
"games": "array of game prediction summaries, each containing team names, predicted scores, odds, and game identifiers"
},
"sample": {
"data": {
"date": "2026-08-29",
"games": [
{
"slug": "colorado-rockies-at-atlanta-braves",
"margin": 0.5,
"spread": -1.5,
"game_id": "38000",
"pitchers": "COL: C. Quantrill vs ATL: C. Sale",
"away_team": "Colorado Rockies",
"game_time": "4:10 PM",
"home_team": "Atlanta Braves",
"over_under": 9,
"loser_score": 4.4,
"winner_score": 4.9,
"moneyline_away": 206,
"moneyline_home": -223,
"predicted_winner": "Atlanta Braves"
}
]
},
"status": "success"
}
}About the Mygamesim API
The Mygamesim API on Parse exposes 2 endpoints for the publicly available data on mygamesim.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.