Forebet Predictions Scraper
Pricing
$0.10 / 1,000 results
Forebet Predictions Scraper
Extracts ALL football predictions from Forebet. Scrapes main predictions, Under/Over 2.5 goals, probabilities. Combines everything into one clean dataset for easy analysis.
0.0 (0)
Pricing
$0.10 / 1,000 results
0
1
1
Last modified
5 hours ago
Forebet Predictions Scraper is a powerful and comprehensive tool developed to fetch a rich dataset of football predictions and results from Forebet.com. The primary objective of this scraper is to provide accurate, detailed, and up-to-date football data for statistical analysis and insights.
A key feature of this scraper is its ability to load all available matches by automatically interacting with the "More" button on the site. It intelligently combines data from both the main predictions and the "Under/Over 2.5 Goals" pages into a single, clean dataset.
Input
Forebet Predictions Scraper does not require any input from the user. It is pre-configured to scrape all available daily and future football data from Forebet. You can, however, use the CLICK_MORE_BUTTON
variable within the code to perform a quick test run on a smaller subset of data.
Output
The dataset extracted by Forebet Predictions Scraper can be downloaded in various formats like JSON, CSV, or Excel. The output will include a detailed breakdown for each match, distinguishing between future predictions and past results.
The data schema includes the following fields:
matchDate
: The scheduled date of the match (YYYY-MM-DD).matchTime
: The scheduled start time of the match.leagueName
: The full name of the league or competition.leagueLogoUrl
: The direct URL to the league's logo image.home
: Name of the home team.away
: Name of the away team.finalScore
: The final score of the match (e.g., "3 - 0"), if finished.halftimeScore
: The halftime score of the match (e.g., "2 - 0"), if finished.prediction
: The predicted outcome (1, X, 2).predictedScore
: The exact predicted score (e.g., "2 - 1").averageGoals
: The predicted average number of goals in the match.probability_1_percent
: The calculated probability in % for a home team win.probability_X_percent
: The calculated probability in % for a draw.probability_2_percent
: The calculated probability in % for an away team win.underOverPrediction
: The prediction for "Over" or "Under" 2.5 goals.probability_under_percent
: The calculated probability in % for under 2.5 goals.probability_over_percent
: The calculated probability in % for over 2.5 goals.
Here is an example of the output, showing one finished and one future match:
[{"matchDate": "2025-09-07","matchTime": "1:00 PM","leagueName": "WC Qualification UEFA","leagueLogoUrl": "https://www.forebet.com/images/fc/41.png","home": "Georgia","away": "Bulgaria","match_finished": "yes","finalScore": "3 - 0","halftimeScore": "2 - 0","prediction": "X","predictedScore": "1 - 1","averageGoals": "2.61","probability_1_percent": "27","probability_X_percent": "47","probability_2_percent": "26","underOverPrediction": "Over","probability_under_percent": "48","probability_over_percent": "52"},{"matchDate": "2025-09-13","matchTime": "6:45 PM","leagueName": "WC Qualification UEFA","leagueLogoUrl": "https://www.forebet.com/images/fc/41.png","home": "Slovakia","away": "Luxembourg","match_finished": "no","finalScore": null,"halftimeScore": null,"prediction": "2","predictedScore": "0 - 1","averageGoals": "2.42","probability_1_percent": "13","probability_X_percent": "29","probability_2_percent": "58","underOverPrediction": "Under","probability_under_percent": "52","probability_over_percent": "48"}]