Sportsgambler APIsportsgambler.com ↗
Access predicted and confirmed football starting lineups from major worldwide leagues to inform your betting decisions and match analysis. Get real-time lineup information for upcoming matches and confirmed team selections to stay ahead of the game.
curl -X GET 'https://api.parse.bot/scraper/30e9751a-9307-42e6-b454-0747e79e4746/get_football_lineups?league=england-premier-league' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns upcoming football matches that have predicted or confirmed starting lineups available. Results include match identifiers, kick-off times, league names, team names, and whether the lineup is predicted or confirmed. Optionally filter by league using the league slug. Returns all available matches for the current matchday window (typically today and the next few days). One HTTP round-trip per call; no pagination.
| Param | Type | Description |
|---|---|---|
| league | string | League URL slug to filter by (e.g. 'england-premier-league', 'germany-bundesliga', 'spain-la-liga'). Omit to return all leagues. |
{
"type": "object",
"fields": {
"total": "integer count of matches returned",
"matches": "array of match objects with match_id, date, time, league, home_team, away_team, lineup_status"
},
"sample": {
"data": {
"total": 10,
"matches": [
{
"date": "Friday 28 August",
"time": "12:00",
"league": "Premier League",
"match_id": "5795429",
"away_team": "Man City",
"home_team": "Crystal Palace",
"lineup_status": "predicted"
}
]
},
"status": "success"
}
}About the Sportsgambler API
The Sportsgambler API on Parse exposes 2 endpoints for the publicly available data on sportsgambler.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.