The Football Predictions API is a powerful tool designed to provide accurate and data-driven football match predictions. Using advanced machine learning algorithms, historical match data, team performance metrics, and real-time statistics, this API delivers insightful forecasts to enhance decision-making for betting, fantasy football, and match analysis.
/daily-predictions
: Retrieve daily match predictions for a variety of bet types./prediction-details
: Obtain specific predictions and stats for a chosen match./vip-featured
: Access curated, high-winning probability predictions./vip-scores
: Get predictions focused on final scores for select matches./stats-performance
: View historical stats on prediction accuracy, win rates, and profitability.How accurate are VIP predictions?
VIP predictions are carefully selected for maximum winning probability, using historical data and predictive models.
How frequently is data updated?
Predictions and match results are refreshed daily to ensure current and reliable data for upcoming matches.
Leverage the Football Predictions API to stay ahead of the game and make smarter football-related decisions! โฝ๐ฎ
The Daily Football Predictions endpoint provides AI-driven match predictions for football games happening on a specific date. By analyzing team form, historical data, and market trends, this endpoint delivers accurate forecasts for various leagues and betting markets.
Daily Football Predictions - Endpoint Features
Object | Description |
---|---|
league |
[Optional] Filter predictions by a specific league (e.g., Premier League, La Liga). |
date |
[Optional] Select the date for which predictions are needed (format: YYYY-MM-DD). |
market |
[Optional] Specify the type of prediction (e.g., match winner, over/under goals, both teams to score). |
{
"pagination": {
"no_of_docs_total": 7,
"no_of_docs_in_page": 7,
"page": 1
},
"matches": [
{
"id": "62fb54c82c9a2e8d643c7965",
"home_team": "Aston Villa",
"away_team": "Everton",
"date": "2022-08-13",
"date_time": "2022-08-13T11:30:00.000Z",
"league": "1",
"prediction": "O",
"prediction_odd": 2,
"prediction_probability": 60,
"is_finished": true,
"result_score": "2 - 1",
"is_prediction_correct": true
},
{
"id": "62fb54cf2c9a2e8d643c7b12",
"home_team": "Arsenal",
"away_team": "Leicester City",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction": "O",
"prediction_odd": 1.73,
"prediction_probability": 61,
"is_finished": true,
"result_score": "4 - 2",
"is_prediction_correct": true
},
{
"id": "62fb54cf2c9a2e8d643c7b15",
"home_team": "Brighton",
"away_team": "Newcastle United",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction": "U",
"prediction_odd": 1.73,
"prediction_probability": 58,
"is_finished": true,
"result_score": "0 - 0",
"is_prediction_correct": true
},
{
"id": "62fb54cf2c9a2e8d643c7b18",
"home_team": "Manchester City",
"away_team": "Bournemouth",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction": "O",
"prediction_odd": 1.4,
"prediction_probability": 73,
"is_finished": true,
"result_score": "4 - 0",
"is_prediction_correct": true
},
{
"id": "62fb54cf2c9a2e8d643c7b1b",
"home_team": "Southampton",
"away_team": "Leeds United",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction": "O",
"prediction_odd": 1.73,
"prediction_probability": 53,
"is_finished": true,
"result_score": "2 - 2",
"is_prediction_correct": true
},
{
"id": "62fb54cf2c9a2e8d643c7b1e",
"home_team": "Wolverhampton",
"away_team": "Fulham",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction": "U",
"prediction_odd": 1.73,
"prediction_probability": 51,
"is_finished": true,
"result_score": "0 - 0",
"is_prediction_correct": true
},
{
"id": "62fb54de2c9a2e8d643c7ebd",
"home_team": "Brentford",
"away_team": "Manchester United",
"date": "2022-08-13",
"date_time": "2022-08-13T16:30:00.000Z",
"league": "1",
"prediction": "O",
"prediction_odd": 1.8,
"prediction_probability": 63,
"is_finished": true,
"result_score": "4 - 0",
"is_prediction_correct": true
}
]
}
curl --location --request GET 'https://zylalabs.com/api/6316/football+predictions/8984/daily+football+predictions' --header 'Authorization: Bearer YOUR_API_KEY'
The Prediction Details endpoint provides in-depth predictions and statistical insights for a specific football match. By supplying a match ID, users can retrieve detailed forecasts, including expected outcomes, score predictions, and key performance indicators.
{
"match": {
"id": "62fb54c82c9a2e8d643c7965",
"home_team": "Aston Villa",
"away_team": "Everton",
"date": "2022-08-13",
"date_time": "2022-08-13T11:30:00.000Z",
"league": "1",
"predictions": {
"1X2": {
"prediction": "1",
"probabilities": {
"1": 47,
"2": 20,
"X": 33
}
},
"OU25": {
"prediction": "O",
"probabilities": {
"U": 40,
"O": 60
}
},
"bts": {
"prediction": "YES",
"probabilities": {
"YES": 64,
"NO": 36
}
}
},
"odds": {
"1X2": {
"1": 1.8,
"2": 4.5,
"X": 3.5
},
"OU25": {
"U": 1.8,
"O": 2
},
"bts": {
"YES": 1.8,
"NO": 1.95
}
},
"is_finished": true,
"result_score": "2 - 1",
"prediction_results": {
"1X2": {
"prediction": "1",
"result": "1",
"status": true,
"probability": 47,
"odd": 1.8,
"profitLoss": 0.8
},
"OU25": {
"prediction": "O",
"result": "O",
"status": true,
"probability": 60,
"odd": 2,
"profitLoss": 1
},
"bts": {
"prediction": "YES",
"result": "YES",
"status": true,
"probability": 64,
"odd": 1.8,
"profitLoss": 0.8
}
}
}
}
curl --location --request GET 'https://zylalabs.com/api/6316/football+predictions/8986/prediction+details&match_id=Required' --header 'Authorization: Bearer YOUR_API_KEY'
The Featured Predictions endpoint provides a curated selection of the most promising daily football match predictions. Unlike the general daily predictions, these results are handpicked based on high-confidence AI forecasts, key match significance, and betting value.
{
"date": "2022-08-18",
"matches": [
{
"id": "62fdee58de641a4a1dd2887b",
"home_team": "Fluminense RJ",
"away_team": "Fortaleza",
"date": "2022-08-18",
"date_time": "2022-08-17T23:00:00.000Z",
"league": "476",
"prediction": "1",
"prediction_odd": 1.65,
"prediction_probability": 54,
"is_finished": true,
"result_score": "2 - 2",
"is_prediction_correct": false
},
{
"id": "62fdee72de641a4a1dd28c2a",
"home_team": "Corinthians",
"away_team": "Atlรฉtico GO",
"date": "2022-08-18",
"date_time": "2022-08-18T00:30:00.000Z",
"league": "476",
"prediction": "2",
"prediction_odd": 6.5,
"prediction_probability": 39,
"is_finished": true,
"result_score": "4 - 1",
"is_prediction_correct": false
},
{
"id": "62fdee74de641a4a1dd28c9e",
"home_team": "HJK Helsinki",
"away_team": "Silkeborg IF",
"date": "2022-08-18",
"date_time": "2022-08-18T16:00:00.000Z",
"league": "14",
"prediction": "1",
"prediction_odd": 3,
"prediction_probability": 44,
"is_finished": false
},
{
"id": "62fdee75de641a4a1dd28cb0",
"home_team": "Ferencvaros TC",
"away_team": "Shamrock Rovers",
"date": "2022-08-18",
"date_time": "2022-08-18T16:30:00.000Z",
"league": "14",
"prediction": "2",
"prediction_odd": 6,
"prediction_probability": 36,
"is_finished": false
},
{
"id": "62fdee75de641a4a1dd28cbf",
"home_team": "Malmรถ FF",
"away_team": "Sivasspor",
"date": "2022-08-18",
"date_time": "2022-08-18T17:00:00.000Z",
"league": "14",
"prediction": "1",
"prediction_odd": 1.75,
"prediction_probability": 56,
"is_finished": false
},
{
"id": "62fdee75de641a4a1dd28cc2",
"home_team": "Pyunik FC",
"away_team": "Sheriff Tiraspol",
"date": "2022-08-18",
"date_time": "2022-08-18T17:00:00.000Z",
"league": "14",
"prediction": "2",
"prediction_odd": 2.45,
"prediction_probability": 37,
"is_finished": false
},
{
"id": "62fdee75de641a4a1dd28cc5",
"home_team": "Apollon Limassol",
"away_team": "Olympiacos FC",
"date": "2022-08-18",
"date_time": "2022-08-18T17:00:00.000Z",
"league": "14",
"prediction": "2",
"prediction_odd": 2.1,
"prediction_probability": 35,
"is_finished": false
},
{
"id": "62fdee75de641a4a1dd28cc8",
"home_team": "FC Zรผrich",
"away_team": "Hearts FC",
"date": "2022-08-18",
"date_time": "2022-08-18T17:00:00.000Z",
"league": "14",
"prediction": "1",
"prediction_odd": 1.8,
"prediction_probability": 44,
"is_finished": false
},
{
"id": "62fdee76de641a4a1dd28cfb",
"home_team": "Ludogorets",
"away_team": "VMFD Zalgiris",
"date": "2022-08-18",
"date_time": "2022-08-18T17:45:00.000Z",
"league": "14",
"prediction": "1",
"prediction_odd": 1.4,
"prediction_probability": 42,
"is_finished": false
},
{
"id": "62fdee76de641a4a1dd28d01",
"home_team": "SK Dnipro-1",
"away_team": "AEK Larnaka",
"date": "2022-08-18",
"date_time": "2022-08-18T18:00:00.000Z",
"league": "14",
"prediction": "2",
"prediction_odd": 2.7,
"prediction_probability": 37,
"is_finished": false
},
{
"id": "62fdee77de641a4a1dd28d25",
"home_team": "KAA Gent",
"away_team": "Omonia Nicosia",
"date": "2022-08-18",
"date_time": "2022-08-18T18:30:00.000Z",
"league": "14",
"prediction": "1",
"prediction_odd": 1.3,
"prediction_probability": 41,
"is_finished": false
},
{
"id": "62fdee77de641a4a1dd28d31",
"home_team": "Villarreal CF",
"away_team": "Hajduk Split",
"date": "2022-08-18",
"date_time": "2022-08-18T18:45:00.000Z",
"league": "571",
"prediction": "1",
"prediction_odd": 1.3,
"prediction_probability": 50,
"is_finished": false
},
{
"id": "62fdee77de641a4a1dd28d34",
"home_team": "West Ham",
"away_team": "Viborg FF",
"date": "2022-08-18",
"date_time": "2022-08-18T18:45:00.000Z",
"league": "571",
"prediction": "2",
"prediction_odd": 11,
"prediction_probability": 45,
"is_finished": false
},
{
"id": "62fdee77de641a4a1dd28d37",
"home_team": "Austria Wien",
"away_team": "Fenerbahรงe SK",
"date": "2022-08-18",
"date_time": "2022-08-18T19:00:00.000Z",
"league": "14",
"prediction": "2",
"prediction_odd": 2.2,
"prediction_probability": 41,
"is_finished": false
}
]
}
curl --location --request GET 'https://zylalabs.com/api/6316/football+predictions/8987/featured+predictions' --header 'Authorization: Bearer YOUR_API_KEY'
The Featured Score Predictions endpoint provides a curated selection of high-confidence football match score predictions for a specific day. Unlike general predictions, these results are handpicked based on AI accuracy, team performance, and betting value, focusing exclusively on expected scorelines.
{
"pagination": {
"no_of_docs_total": 7,
"no_of_docs_in_page": 7,
"page": 1
},
"matches": [
{
"id": "62fb54c82c9a2e8d643c7965",
"home_team": "Aston Villa",
"away_team": "Everton",
"date": "2022-08-13",
"date_time": "2022-08-13T11:30:00.000Z",
"league": "1",
"prediction_score": "3 - 1",
"average_goals": 3.01,
"result_score": "2 - 1",
"is_finished": true
},
{
"id": "62fb54cf2c9a2e8d643c7b12",
"home_team": "Arsenal",
"away_team": "Leicester City",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction_score": "2 - 1",
"average_goals": 3.04,
"result_score": "4 - 2",
"is_finished": true
},
{
"id": "62fb54cf2c9a2e8d643c7b15",
"home_team": "Brighton",
"away_team": "Newcastle United",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction_score": "0 - 1",
"average_goals": 2.08,
"result_score": "0 - 0",
"is_finished": true
},
{
"id": "62fb54cf2c9a2e8d643c7b18",
"home_team": "Manchester City",
"away_team": "Bournemouth",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction_score": "2 - 1",
"average_goals": 3.65,
"result_score": "4 - 0",
"is_finished": true
},
{
"id": "62fb54cf2c9a2e8d643c7b1b",
"home_team": "Southampton",
"away_team": "Leeds United",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction_score": "0 - 3",
"average_goals": 2.63,
"result_score": "2 - 2",
"is_finished": true
},
{
"id": "62fb54cf2c9a2e8d643c7b1e",
"home_team": "Wolverhampton",
"away_team": "Fulham",
"date": "2022-08-13",
"date_time": "2022-08-13T14:00:00.000Z",
"league": "1",
"prediction_score": "1 - 1",
"average_goals": 2.43,
"result_score": "0 - 0",
"is_finished": true
},
{
"id": "62fb54de2c9a2e8d643c7ebd",
"home_team": "Brentford",
"away_team": "Manchester United",
"date": "2022-08-13",
"date_time": "2022-08-13T16:30:00.000Z",
"league": "1",
"prediction_score": "2 - 1",
"average_goals": 3.17,
"result_score": "4 - 0",
"is_finished": true
}
]
}
curl --location --request GET 'https://zylalabs.com/api/6316/football+predictions/8988/featured+score+predictions' --header 'Authorization: Bearer YOUR_API_KEY'
The Stats - Performance endpoint shows the historical results of our predictions
Stats - Performance - Endpoint Features
Object | Description |
---|---|
date |
[Required] ex: YYYY-MM-DD |
{
"date": "2022-08-13",
"featured": {
"classic": {
"profit_loss": 6.94,
"winning_percentage": 58.33,
"count": 24,
"count_won": 14,
"count_lost": 10,
"avg_prob": 48.63,
"avg_odd": 2.28
},
"ou25": {
"profit_loss": 2.63,
"winning_percentage": 66.67,
"count": 24,
"count_won": 16,
"count_lost": 8,
"avg_prob": 58.83,
"avg_odd": 1.72
},
"both": {
"profit_loss": 6.27,
"winning_percentage": 70.83,
"count": 24,
"count_won": 17,
"count_lost": 7,
"avg_prob": 62.88,
"avg_odd": 1.85
}
},
"all": {
"classic": {
"profit_loss": -69.56,
"winning_percentage": 44.35,
"count": 814,
"count_won": 361,
"count_lost": 453,
"avg_prob": 47.32,
"avg_odd": 2.46
},
"ou25": {
"profit_loss": -43.96,
"winning_percentage": 54.3,
"count": 814,
"count_won": 442,
"count_lost": 372,
"avg_prob": 63.36,
"avg_odd": 1.79
},
"both": {
"profit_loss": -41.7,
"winning_percentage": 49.88,
"count": 814,
"count_won": 406,
"count_lost": 408,
"avg_prob": 62.28,
"avg_odd": 1.84
}
}
}
curl --location --request GET 'https://zylalabs.com/api/6316/football+predictions/8989/stats+-+performance?date=2025-03-16' --header 'Authorization: Bearer YOUR_API_KEY'
Header | Description |
---|---|
Authorization
|
[Required] Should be Bearer access_key . See "Your API Access Key" above when you are subscribed. |
No long term commitments. One click upgrade/downgrade or cancellation. No questions asked.
VIP predictions are carefully selected for maximum winning probability, using historical data and predictive models.
Predictions and match results are refreshed daily to ensure current and reliable data for upcoming matches.
While no prediction system is 100% accurate, our AI models consistently improve using real-time data and historical trends to maximize precision.
Yes, the API provides valuable insights for betting, but users should gamble responsibly and understand that predictions are probabilities, not guarantees.
The API supports 500+ major leagues and tournaments worldwide, including: - Premier League - La Liga - Serie A - Bundesliga - Ligue 1
The /daily-predictions endpoint returns AI-driven match predictions, including details such as home and away teams, match date and time, prediction type, odds, prediction probability, and whether the prediction was correct after the match concludes.
The /prediction-details endpoint includes fields such as match ID, teams involved, prediction type, odds, prediction probability, historical performance, and additional statistics relevant to the specific match.
Users can customize requests by using optional parameters like "league" to filter by specific leagues, "market" to specify prediction types (e.g., match winner), "date" for specific match dates, and "page" for pagination of results.
The /vip-featured endpoint organizes response data into a structured format that includes a list of high-probability predictions, each containing details such as match ID, teams, prediction type, odds, and probability, making it easy to analyze.
The Football Predictions API utilizes a combination of historical match data, team performance metrics, and real-time statistics sourced from reputable sports data providers to ensure accuracy and reliability.
Typical use cases include enhancing betting strategies, making informed fantasy football selections, conducting match analysis, and generating insights for sports journalism, leveraging the API's predictive capabilities.
Users can utilize the returned data from the /vip-scores endpoint by analyzing the predicted final scores and probabilities to inform betting decisions or fantasy team selections, focusing on matches with high prediction accuracy.
The Football Predictions API employs advanced machine learning algorithms that continuously learn from new data, alongside regular audits of historical prediction accuracy and win rates to ensure high-quality outputs.
Zyla API Hub is like a big store for APIs, where you can find thousands of them all in one place. We also offer dedicated support and real-time monitoring of all APIs. Once you sign up, you can pick and choose which APIs you want to use. Just remember, each API needs its own subscription. But if you subscribe to multiple ones, you'll use the same key for all of them, making things easier for you.
Prices are listed in USD (United States Dollar), EUR (Euro), CAD (Canadian Dollar), AUD (Australian Dollar), and GBP (British Pound). We accept all major debit and credit cards. Our payment system uses the latest security technology and is powered by Stripe, one of the worldโs most reliable payment companies. If you have any trouble paying by card, just contact us at [email protected]
Additionally, if you already have an active subscription in any of these currencies (USD, EUR, CAD, AUD, GBP), that currency will remain for subsequent subscriptions. You can change the currency at any time as long as you don't have any active subscriptions.
The local currency shown on the pricing page is based on the country of your IP address and is provided for reference only. The actual prices are in USD (United States Dollar). When you make a payment, the charge will appear on your card statement in USD, even if you see the equivalent amount in your local currency on our website. This means you cannot pay directly with your local currency.
Occasionally, a bank may decline the charge due to its fraud protection settings. We suggest reaching out to your bank initially to check if they are blocking our charges. Also, you can access the Billing Portal and change the card associated to make the payment. If these does not work and you need further assistance, please contact our team at [email protected]
Prices are determined by a recurring monthly or yearly subscription, depending on the chosen plan.
API calls are deducted from your plan based on successful requests. Each plan comes with a specific number of calls that you can make per month. Only successful calls, indicated by a Status 200 response, will be counted against your total. This ensures that failed or incomplete requests do not impact your monthly quota.
Zyla API Hub works on a recurring monthly subscription system. Your billing cycle will start the day you purchase one of the paid plans, and it will renew the same day of the next month. So be aware to cancel your subscription beforehand if you want to avoid future charges.
To upgrade your current subscription plan, simply go to the pricing page of the API and select the plan you want to upgrade to. The upgrade will be instant, allowing you to immediately enjoy the features of the new plan. Please note that any remaining calls from your previous plan will not be carried over to the new plan, so be aware of this when upgrading. You will be charged the full amount of the new plan.
To check how many API calls you have left for the current month, refer to the โX-Zyla-API-Calls-Monthly-Remainingโ field in the response header. For example, if your plan allows 1,000 requests per month and you've used 100, this field in the response header will indicate 900 remaining calls.
To see the maximum number of API requests your plan allows, check the โX-Zyla-RateLimit-Limitโ response header. For instance, if your plan includes 1,000 requests per month, this header will display 1,000.
The โX-Zyla-RateLimit-Resetโ header shows the number of seconds until your rate limit resets. This tells you when your request count will start fresh. For example, if it displays 3,600, it means 3,600 seconds are left until the limit resets.
Yes, you can cancel your plan anytime by going to your account and selecting the cancellation option on the Billing page. Please note that upgrades, downgrades, and cancellations take effect immediately. Additionally, upon cancellation, you will no longer have access to the service, even if you have remaining calls left in your quota.
You can contact us through our chat channel to receive immediate assistance. We are always online from 8 am to 5 pm (EST). If you reach us after that time, we will get back to you as soon as possible. Additionally, you can contact us via email at [email protected]
To give you the opportunity to experience our APIs without any commitment, we offer a 7-day free trial that allows you to make up to 50 API calls at no cost. This trial can be used only once, so we recommend applying it to the API that interests you the most. While most of our APIs offer a free trial, some may not. The trial concludes after 7 days or once you've made 50 requests, whichever occurs first. If you reach the 50 request limit during the trial, you will need to "Start Your Paid Plan" to continue making requests. You can find the "Start Your Paid Plan" button in your profile under Subscription -> Choose the API you are subscribed to -> Pricing tab. Alternatively, if you don't cancel your subscription before the 7th day, your free trial will end, and your plan will automatically be billed, granting you access to all the API calls specified in your plan. Please keep this in mind to avoid unwanted charges.
After 7 days, you will be charged the full amount for the plan you were subscribed to during the trial. Therefore, itโs important to cancel before the trial period ends. Refund requests for forgetting to cancel on time are not accepted.
When you subscribe to an API free trial, you can make up to 50 API calls. If you wish to make additional API calls beyond this limit, the API will prompt you to perform an "Start Your Paid Plan." You can find the "Start Your Paid Plan" button in your profile under Subscription -> Choose the API you are subscribed to -> Pricing tab.
Payout Orders are processed between the 20th and the 30th of each month. If you submit your request before the 20th, your payment will be processed within this timeframe.
Service Level:
100%
Response Time:
2,309ms
Service Level:
98%
Response Time:
567ms
Service Level:
90%
Response Time:
1,074ms
Service Level:
100%
Response Time:
2,477ms
Service Level:
100%
Response Time:
1,256ms
Service Level:
100%
Response Time:
312ms
Service Level:
100%
Response Time:
385ms
Service Level:
100%
Response Time:
650ms
Service Level:
100%
Response Time:
139ms
Service Level:
100%
Response Time:
1,019ms