Discover/FlashScore API
live

FlashScore APIflashscore.com

Access live scores, fixtures, match events, statistics, and league standings from FlashScore across football, tennis, basketball, hockey, and more.

Endpoint health
verified 1d ago
get_match_detail
get_match_events
get_live_scores
get_match_statistics
get_league_standings
7/7 passing latest checkself-healing
Endpoints
7
Updated
22d ago

What is the FlashScore API?

The FlashScore API exposes 7 endpoints covering live scores, daily fixtures, match timelines, match statistics, and league standings across football, tennis, basketball, hockey, table tennis, esports, and more. The get_match_statistics endpoint returns per-period breakdowns including xG, possession, shots on target, and duels won. IDs returned by search and get_daily_fixtures chain directly into the detail, events, and statistics endpoints.

Try it
Search query (minimum 2 characters). Can be team name, player name, or tournament name.
Filter results by sport. Omitting returns results across all sports.
api.parse.bot/scraper/e4c11d5d-7c48-4a9d-9141-7abf0692ddcd/<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 POST 'https://api.parse.bot/scraper/e4c11d5d-7c48-4a9d-9141-7abf0692ddcd/search' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "query": "Barcelona",
  "sport": "football"
}'
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-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.

"""FlashScore Sports Data API — search teams, browse fixtures, drill into match stats."""
from parse_apis.flashscore_sports_data_api import FlashScore, Sport, MatchNotFound

client = FlashScore()

# Search for football teams matching "Barcelona", capped at 5 results.
for result in client.searchresults.search(query="Barcelona", sport=Sport.FOOTBALL, limit=5):
    print(result.name, result.country, result.type)

# Get yesterday's football fixtures and pick the first finished match.
match_summary = client.matchsummaries.list(sport=Sport.FOOTBALL, day_offset=-1, limit=1).first()
if match_summary:
    print(match_summary.home_team.name, "vs", match_summary.away_team.name, match_summary.status)

    # Drill into full match detail via the summary's navigation op.
    match = match_summary.detail()
    print(match.status, match.winner, match.available_data)

    # Walk match events (goals, cards, subs).
    for event in match.events.list(limit=5):
        print(event.minute, event.type_label, event.player, event.team)

    # Get league standings for the match's competition.
    for standing in match.standings.list(limit=3):
        print(standing.rank, standing.name, standing.points)

# Typed error handling: attempt to fetch a non-existent match.
try:
    client.matches.get(match_id="INVALID_ID_000")
except MatchNotFound as exc:
    print(f"Match not found: {exc.match_id}")

print("exercised: searchresults.search / matchsummaries.list / detail / events.list / standings.list / matches.get")
All endpoints · 7 totalmissing one? ·

Full-text search across teams, players, and tournaments for any sport on FlashScore. Returns matching entities with IDs usable in other endpoints. Minimum 2-character query. Results include entity type, sport, gender, and country. An optional sport filter narrows by sport.

Input
ParamTypeDescription
queryrequiredstringSearch query (minimum 2 characters). Can be team name, player name, or tournament name.
sportstringFilter results by sport. Omitting returns results across all sports.
Response
{
  "type": "object",
  "fields": {
    "query": "string — the search query submitted",
    "total": "integer — number of matching results",
    "results": "array of search result objects with id, name, url_slug, type, sport, sport_id, gender, country, country_id"
  },
  "sample": {
    "data": {
      "query": "Barcelona",
      "total": 15,
      "results": [
        {
          "id": "SKbpVP5K",
          "name": "Barcelona",
          "type": "Team",
          "sport": "Soccer",
          "gender": "Men",
          "country": "Spain",
          "sport_id": 1,
          "url_slug": "barcelona",
          "country_id": 176
        }
      ]
    },
    "status": "success"
  }
}

About the FlashScore API

What the API Covers

The FlashScore API returns sports data across dozens of leagues and competitions worldwide. The search endpoint accepts a team name, player name, or tournament name and returns matching entities with id, url_slug, type, sport, gender, country, and sport_id fields. The id values from search results feed directly into get_match_detail, get_match_events, get_match_statistics, and get_league_standings.

Fixtures and Live Scores

get_daily_fixtures accepts a sport string and a day_offset integer (0 = today, -1 = yesterday, 1 = tomorrow) and returns every match for that day with match_id, status, start_time, home_team, away_team, score, and competition. For in-progress matches, get_live_scores returns incremental delta updates — score_home, score_away, current_minute, and last_updated — for active matches only; fields may be null for matches with no recent update in the polling window.

Match Detail, Events, and Statistics

get_match_detail returns the score object (home, away, home_ht, away_ht), status, winner, start_time, and an available_data array of codes such as ST (statistics), LI (lineups), and HH (head-to-head). Checking available_data before calling get_match_statistics avoids empty responses. get_match_events returns a timeline of goals, assists, yellow/red cards, and substitutions, each with period, minute, team, type_label, player, player_id, and running score_home/score_away. The match_info object on this endpoint carries attendance, venue, and referee when available.

get_match_statistics keys its response by period (match, 1st_half, 2nd_half, extra_time) with stat categories including top_stats, shots, attack, and pass. Fields include xG, Ball Possession, Total Shots, Shots on/off Target, Corner Kicks, Passes, Tackles, Duels Won, and Goalkeeper Saves. get_league_standings takes any match_id from the target competition and returns the full table with rank, matches_played, wins, draws, losses, goals_for, goals_against, goal_difference, points, and recent form.

Reliability & maintenanceVerified

The FlashScore API is a managed, monitored endpoint for flashscore.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when flashscore.com 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 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
1d ago
Latest check
7/7 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
  • Display a live match ticker using get_live_scores to show current scores and match minutes across multiple sports.
  • Build a fixture calendar app using get_daily_fixtures with day_offset to browse past and upcoming matches by sport.
  • Render a match statistics overlay with xG, possession, and shot breakdowns from get_match_statistics per half.
  • Show a match event timeline with goal scorers, card recipients, and substitutions from get_match_events.
  • Power a league table widget using get_league_standings with wins, draws, losses, points, and goal difference.
  • Resolve team or tournament IDs by name using search before querying fixtures or standings.
  • Track head-to-head context and match availability by reading the available_data codes from get_match_detail.
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 developer API?+
FlashScore does not publish a documented public developer API for third-party use. Data access for developers has historically been unavailable through an official channel.
What does `available_data` in `get_match_detail` tell me?+
It is an array of short codes indicating which data types exist for that match. For example, ST signals that statistics are available for get_match_statistics, and LI signals lineup data. Checking this array before calling downstream endpoints avoids empty responses for matches where certain data was never collected.
How does `get_live_scores` differ from `get_daily_fixtures`?+
get_live_scores returns only matches with recent score or status updates and includes current_minute and last_updated fields — it is designed for polling active matches. get_daily_fixtures returns all scheduled matches for a given day regardless of live status and is better suited for building fixture lists or calendars.
Does the API return player or team odds data?+
Not currently. The API covers match scores, events, per-period statistics, and league standings, but does not expose betting odds or probability data. You can fork the API on Parse and revise it to add an odds endpoint if that data is needed.
Are match lineups available through this API?+
Not currently as a dedicated endpoint. get_match_detail includes LI in available_data when lineup data exists for a match, but there is no endpoint that returns the full lineup. You can fork the API on Parse and revise it to add a lineup endpoint that reads the LI indicator.
Page content last updated . Spec covers 7 endpoints from flashscore.com.
Related APIs in SportsSee all →
flashscore.com.ua API
Access football match results, fixtures, team histories, and in-match statistics from Flashscore. Look up matches by date, retrieve a team's recent and upcoming games, and pull detailed events and performance metrics for any match.
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.
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.
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.
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.
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.
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.
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.