Discover/predicd.com API
live

predicd.com APIpredicd.com

Access football match predictions, fixtures, standings, and live scores from predicd.com across multiple leagues via 5 structured endpoints.

Endpoints
5
Updated
4mo ago
Try it
Filter by matchday/round number (e.g. '1', '2', '34'). Omitting returns all matchdays.
League ID from list_leagues endpoint (e.g. '4328' for Premier League, '4331' for 1. Bundesliga).
api.parse.bot/scraper/3c7a7801-4e9d-4b58-942c-df0bfc16b676/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 5 totalclick to expand

Get fixtures and predictions for a specific league and optionally a matchday. Returns match details including predicted scores, actual scores, and betting odds.

Input
ParamTypeDescription
matchdaystringFilter by matchday/round number (e.g. '1', '2', '34'). Omitting returns all matchdays.
league_idstringLeague ID from list_leagues endpoint (e.g. '4328' for Premier League, '4331' for 1. Bundesliga).
Response
{
  "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.

Common use cases
  • Display predicted and actual scores side-by-side for a matchday using get_league_fixtures with a specific matchday filter.
  • 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_prediction to feed a betting analysis tool.
  • Enumerate all covered competitions and their IDs via list_leagues to populate a league selection UI.
  • Monitor predicted vs. actual score accuracy across a season by pairing get_league_fixtures results over multiple matchdays.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does predicd.com offer an official developer API?+
Predicd.com does not publish an official public developer API or documented developer program at this time.
What does `get_match_prediction` return beyond a score prediction?+
It returns a 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?+
Not currently. 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?+
Coverage depends on what predicd.com indexes. The 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.
How fresh is the live match data from `get_live_matches`?+
The endpoint reflects the state of matches as indexed by predicd.com at the time of the request. It returns an empty array when no matches are currently in progress, so the response is condition-dependent rather than time-scheduled. There is no push or webhook mechanism; clients must poll the endpoint to detect changes.
Page content last updated . Spec covers 5 endpoints from predicd.com.
Related APIs in SportsSee all →
footystats.org API
Get live football scores, team performance metrics, league standings, and head-to-head match statistics all in one place. Search teams and leagues to access detailed player stats, comprehensive analytics, and in-depth performance data across football competitions worldwide.
soccerstats.com API
Access comprehensive soccer statistics including live league tables, match details, team performance metrics, and form rankings across multiple football leagues. Search for specific teams and analyze their season statistics, head-to-head records, and competitive standings to stay informed on the latest soccer data.
fotmob.com API
Get live football scores, detailed match results, and comprehensive league statistics across multiple competitions. Access player and team performance data, browse upcoming fixtures by date, and dive into in-depth analytics for your favorite leagues and matches.
football-data.org API
Get live match scores, team standings, and player statistics across football competitions worldwide. Search for teams, view head-to-head matchups, track top scorers, and explore detailed information about competitions and geographical areas.
fussballdaten.de API
Find live soccer match schedules, scores, and team information across German leagues and Europe's top competitions, with the ability to filter by date, team, or league. Quickly look up upcoming fixtures, past results, and complete team schedules for Bundesliga, Premier League, La Liga, Serie A, Ligue 1, Champions League, and more.
livescore.com API
Track live scores and detailed statistics across football, hockey, basketball, tennis, and cricket with the ability to filter by date, sport, and league. Access match summaries, team overviews, standings, fixtures, and results to stay updated on your favorite competitions and teams.
psl.co.za API
Access real-time South African Premier Soccer League data including live scores, fixtures, results, standings, and match details. Search for clubs, news articles, and other PSL information to stay updated on the league.
flashscore.de API
Get match listings, match details and statistics, team rosters, and a German-language sports news feed from Flashscore.de, plus lineup data with player rating fields when available.