predicd.com APIpredicd.com ↗
Access football match predictions, fixtures, standings, and live scores from predicd.com across multiple leagues via 5 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/3c7a7801-4e9d-4b58-942c-df0bfc16b676/get_league_fixtures?matchday=1&league_id=4328' \ -H 'X-API-Key: $PARSE_API_KEY'
Get fixtures and predictions for a specific league and optionally a matchday. Returns match details including predicted scores, actual scores, and betting odds.
| Param | Type | Description |
|---|---|---|
| matchday | string | Filter by matchday/round number (e.g. '1', '2', '34'). Omitting returns all matchdays. |
| league_id | string | League ID from list_leagues endpoint (e.g. '4328' for Premier League, '4331' for 1. Bundesliga). |
{
"type": "object",
"fields": {
"matches": "array of match objects with match_id, matchday, date_time, home_team, away_team, predicted_score, actual_score, and odds",
"league_id": "string, the league ID queried"
},
"sample": {
"data": {
"matches": [
{
"odds": {
"away": 10.25,
"draw": 7.14,
"home": 1.24
},
"match_id": "2276638",
"matchday": "1",
"away_team": "RB Leipzig",
"date_time": "2025-08-22T18:30:00Z",
"home_team": "FC Bayern Munich",
"actual_score": "6-0",
"away_team_id": "134695",
"home_team_id": "133664",
"predicted_score": "3-1"
}
],
"league_id": "4331"
},
"status": "success"
}
}About the predicd.com API
The Predicd.com API provides access to football data across 5 endpoints, covering match predictions, fixtures, league standings, and live match status. The get_match_prediction endpoint returns per-match win probabilities, expected goals, form ratings, head-to-head records, and league position data for both home and away sides. League IDs are discovered through list_leagues and used consistently across all other endpoints.
Fixtures and Predictions
The get_league_fixtures endpoint accepts a league_id (sourced from list_leagues) and an optional matchday parameter to narrow results to a specific round. Each match object in the response includes match_id, date_time, home_team, away_team, predicted_score, actual_score, and odds. Omitting matchday returns all matchdays for the league in a single response.
Per-Match Detail
get_match_prediction takes a match_id from fixture results and returns a stats object keyed by stat type — win_probability, expected_goals, form, h2h, and league_position — with separate home and away values for each. It also returns match_info with team names, and a predicted_score string in X-Y format (or null when unavailable). The probabilities field is reserved for future expansion.
Standings
get_league_standings returns the current standings table for a given league_id. Each entry in the standings array includes pos, team, played, wins, draws, losses, goals, diff, and pts. This is suitable for tracking real-time table position across supported competitions.
Live Matches and League Discovery
get_live_matches requires no parameters and returns an array of in-progress matches with match_id, team names, predicted_score, and status. When no matches are live, the array is empty. list_leagues returns all supported leagues with their id, name, and url — these IDs are the entry point for all league-scoped queries.
- Display predicted and actual scores side-by-side for a matchday using
get_league_fixtureswith a specificmatchdayfilter. - Build a match preview widget showing win probabilities and expected goals from
get_match_prediction. - Track live football scores and predictions during a match window using
get_live_matches. - Render a league table with position, points, goal difference, and record from
get_league_standings. - Aggregate head-to-head records and form data from
get_match_predictionto feed a betting analysis tool. - Enumerate all covered competitions and their IDs via
list_leaguesto populate a league selection UI. - Monitor predicted vs. actual score accuracy across a season by pairing
get_league_fixturesresults over multiple matchdays.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does predicd.com offer an official developer API?+
What does `get_match_prediction` return beyond a score prediction?+
stats object with five keyed stat types — win_probability, expected_goals, form, h2h, and league_position — each containing separate home and away values. The predicted_score field gives a single X-Y string or null. The probabilities field is present in the response but reserved for future use and does not currently carry data.Can I filter fixtures by team name instead of league and matchday?+
get_league_fixtures filters only by league_id and optional matchday; there is no team-name or team-ID filter. You can fork this API on Parse and revise it to add a team-scoped filtering endpoint.Does the API cover cup competitions and international tournaments, or only domestic leagues?+
list_leagues endpoint exposes every supported competition with its id, name, and url, so querying it directly shows the full current scope. Competitions not listed there are not available. You can fork the API on Parse and revise it to extend coverage if predicd.com adds new competitions.