Discover/Com API
live

Com APIflashscore.com.ua

Access football match results, fixtures, team histories, events, and in-match statistics from Flashscore.com.ua via a structured JSON API.

Endpoint health
verified 2d ago
get_teams_with_consecutive_0_0_draws
get_football_results_by_date
get_match_details
get_team_results
get_match_statistics
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Com API?

This API exposes 5 endpoints covering football match data from Flashscore.com.ua, including results by date, team fixtures, match events, and in-match statistics. The get_football_results_by_date endpoint returns match objects with scores, team identifiers, competition context, and timestamps for any date offset from today — past or future. Match IDs returned throughout the API chain into get_match_details and get_match_statistics for event-level and performance data.

Try it
Date offset from today (0=today, -1=yesterday, -2=two days ago, 1=tomorrow, etc.).
api.parse.bot/scraper/ee993dc6-7c07-47c8-a6e6-6075e825e247/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ee993dc6-7c07-47c8-a6e6-6075e825e247/get_football_results_by_date?date_offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace flashscore-com-ua-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.flashscore_football_api import Flashscore, Match, Team, MatchDetail, MatchStatistics, ConsecutiveDrawsReport, TeamAnalysis, MatchNotFound

client = Flashscore()

# Get today's matches across all competitions
for match in client.matches.by_date(date_offset=0):
    print(match.home_team, match.home_score, match.away_score, match.away_team, match.competition)

# Construct a team by ID and fetch their recent results
team = client.team(team_id="M9UocgKt")
for match in team.results(country_id="24"):
    print(match.match_id, match.home_team, match.home_score, match.away_score, match.away_team)

# Drill into a specific match for events and statistics
first_match = client.match(match_id="OvKeupeC")
detail = first_match.details()
for event in detail.events:
    print(event.minute, event.event_type, event.player, event.team)

stats = first_match.statistics()
for stat in stats.statistics:
    print(stat.stat_name, stat.home_value, stat.away_value, stat.period)

# Analyze a team for consecutive 0:0 draws
report = team.analyze_draws()
print(report.total_teams_checked, report.total_with_consecutive_0_0)
for analysis in report.team_analyses:
    print(analysis.team_id, analysis.team_name, analysis.has_consecutive_0_0, analysis.matches_found)
All endpoints · 5 totalmissing one? ·

Retrieve football match results and fixtures for a specific date across all competitions. Returns both completed matches with scores and upcoming scheduled matches. The date is calculated relative to today using an offset. A single request returns all matches for that day grouped by competition.

Input
ParamTypeDescription
date_offsetintegerDate offset from today (0=today, -1=yesterday, -2=two days ago, 1=tomorrow, etc.).
Response
{
  "type": "object",
  "fields": {
    "matches": "array of match objects containing match_id, timestamp, home_team, away_team, home_score, away_score, home_team_id, away_team_id, status_code, competition, country, country_id, league_url"
  },
  "sample": {
    "data": {
      "matches": [
        {
          "country": "Австралия",
          "match_id": "OvKeupeC",
          "away_team": "Canberra White Eagles",
          "home_team": "Belconnen Utd.",
          "timestamp": 1781083800,
          "away_score": "2",
          "country_id": "24",
          "home_score": "1",
          "league_url": "/football/australia/npl-act/",
          "competition": "АВСТРАЛИЯ: НПЛ АСТ",
          "status_code": "3",
          "away_team_id": "jcQwCm5i",
          "home_team_id": "M9UocgKt"
        }
      ]
    },
    "status": "success"
  }
}

About the Com API

Match Results and Fixtures

get_football_results_by_date accepts a date_offset integer relative to today (e.g. 0 for today, -1 for yesterday, 1 for tomorrow) and returns an array of match objects. Each match includes match_id, timestamp, home_team, away_team, home_score, away_score, home_team_id, away_team_id, and status. Both completed matches with final scores and upcoming scheduled fixtures appear in the same response. The team_id and country_id values from these results are the inputs for team-level queries.

Team History and Consecutive Draw Analysis

get_team_results takes a team_id (e.g. 'bL3ChiWQ') and an optional country_id that must match the team's actual country — mismatched country_id values return empty results. The response mirrors the match object structure and covers both recent completed games and upcoming fixtures for that team. For pattern detection, get_teams_with_consecutive_0_0_draws accepts a JSON array of team IDs and returns per-team analysis: has_consecutive_0_0, the consecutive_0_0_match_ids when present, and aggregate counts (total_teams_checked, total_with_consecutive_0_0).

Match Events and In-Match Statistics

get_match_details returns an events array for a given match_id. Each event object carries event_id, period, team, minute, event_type (goal, card, substitution), player, player_id, and the running score at that moment via score_home and score_away. Events are available for finished matches; live or scheduled matches return an empty array. get_match_statistics returns a statistics array where each entry has period, category, stat_name, home_value, and away_value — covering metrics like possession, shots, and corners. Not all matches have statistics; those without return an empty array.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for flashscore.com.ua — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when flashscore.com.ua changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official flashscore.com.ua API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a daily match digest by pulling all results for a given date offset and filtering by competition.
  • Track a specific club's form by retrieving its recent matches via get_team_results and computing win/draw/loss sequences.
  • Identify 0-0 draw patterns across a watchlist of teams using get_teams_with_consecutive_0_0_draws.
  • Reconstruct a full match timeline by chaining get_match_details events sorted by minute.
  • Compare possession and shot accuracy between two teams from get_match_statistics stat objects.
  • Aggregate goal scorers and assist data across a matchday by iterating match IDs from get_football_results_by_date.
  • Alert systems for upcoming fixtures by querying positive date offsets and filtering by team_id.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 Flashscore have an official public developer API?+
Flashscore does not publish an official public developer API for third-party use. This Parse API provides structured access to the football data available on flashscore.com.ua.
What does get_match_details return for a match that hasn't finished yet?+
For scheduled or in-progress matches, the events array will be empty. Goal scorers, cards, substitutions, and running scores in the event objects are only present for finished matches.
Why might get_team_results return no matches even with a valid team_id?+
The country_id parameter must correspond to the team's actual country. If the country_id is omitted or doesn't match, the endpoint returns empty results. The correct country_id for a team is available in the match objects returned by get_football_results_by_date.
Does the API cover leagues or competitions other than football?+
The current API covers football (soccer) only — match results, team fixtures, events, and statistics. Other sports available on Flashscore (tennis, basketball, hockey) are not covered by these endpoints. You can fork this API on Parse and revise it to add endpoints for other sports.
Is player-level season statistics (goals scored across a season, cards totals) available?+
Not currently. The API exposes per-match event data including player names and event types, but not cumulative season stats per player. You can fork this API on Parse and revise it to add a player season statistics endpoint.
Page content last updated . Spec covers 5 endpoints from flashscore.com.ua.
Related APIs in SportsSee all →
flashscore.com API
Search teams and competitions, pull daily fixtures and live scores, and retrieve match details including events, statistics, and league standings from FlashScore.
flashscore.com.tr API
Get live football scores, daily fixtures, and detailed match information including team lineups with player ratings, comprehensive statistics, and betting odds. Stay updated on your favorite games with real-time data and complete match summaries all in one place.
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.
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.
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.
sofascore.com API
Access head-to-head statistics and streaks for sporting events across a wide range of sports. Retrieve daily scheduled events, detailed H2H metrics (win rates, unbeaten records, draw rates, manager duels), and event fun facts. Filter and rank H2H streak metrics by configurable percentage thresholds to identify historically consistent patterns between any two teams.
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.
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.