Discover/WhoScored API
live

WhoScored APIwhoscored.com

Access WhoScored football data via 5 endpoints: search players and teams, retrieve seasonal stats, match events with pass coordinates, and fixture lists.

This API takes change requests — .
Endpoint health
verified 19h ago
search
list_matches
get_match_events
get_team_stats
get_player_stats
5/5 passing latest checkself-healing
Endpoints
5
Updated
4d ago

What is the WhoScored API?

The WhoScored API exposes 5 endpoints covering player search, team search, seasonal performance statistics, and per-match event data. The get_match_events endpoint returns every in-game action for a completed match — including pass origin and destination coordinates, event type, outcome, and qualifiers — while get_player_stats and get_team_stats deliver per-tournament seasonal records for any player or team ID retrieved from the search endpoint.

This call costs1 credit / call— charged only on success
Try it
Search keyword (player or team name)
api.parse.bot/scraper/fefeab4f-b650-45ef-9b05-42622fe3619a/<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/fefeab4f-b650-45ef-9b05-42622fe3619a/search?query=Barcelona' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalmissing one? ·

Full-text search over WhoScored's player and team database. Returns matching players (with IDs, slugs, current team, age) and teams (with IDs, slugs, country). A query that matches only players returns an empty teams array and vice versa. Results are unordered and unpaginated — the server returns all matches in a single response.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (player or team name)
Response
{
  "type": "object",
  "fields": {
    "teams": "array of team objects with team_id, slug, name, and country",
    "players": "array of player objects with player_id, slug, name, team, and age"
  },
  "sample": {
    "data": {
      "teams": [
        {
          "name": "Barcelona",
          "slug": "spain-barcelona",
          "country": "Spain",
          "team_id": 65
        }
      ],
      "players": [
        {
          "age": 38,
          "name": "Lionel Messi",
          "slug": "lionel-messi",
          "team": "Inter Miami CF",
          "player_id": 11119
        }
      ]
    },
    "status": "success"
  }
}

About the WhoScored API

Search and ID Lookup

All entity lookups start with the search endpoint, which accepts a query string and returns two arrays: players (with player_id, slug, current team, and age) and teams (with team_id, slug, name, and country). Results are unordered and unpaginated. A query that matches only players returns an empty teams array and vice versa. The numeric IDs returned here are the required inputs for every other endpoint.

Seasonal Statistics

get_player_stats accepts a player_id and returns a playerTableStats array broken down by tournament and season. Each record includes rating, goals, apps, assists, passSuccess, minsPlayed, shotsPerGame, and additional columns enumerated in the statColumns array. get_team_stats mirrors this structure for teams, substituting possession and other team-level fields. Both endpoints include a paging object (currentPage, totalPages, totalResults) indicating whether multiple result pages exist.

Match Events and Fixtures

get_match_events takes a match_id and returns every event from a completed match: each object contains minute, second, player_id, player_name, team_id, event_type, outcome, spatial coordinates (x, y, end_x, end_y), and a qualifiers field with supplementary context per event type. The score, home, away, and max_minute fields are also returned at the top level. Match IDs can be sourced from list_matches, which retrieves the current-season fixture list for a given team_id, including date, time, status, home and away team identifiers, and score (null for upcoming fixtures).

Reliability & maintenanceVerified

The WhoScored API is a managed, monitored endpoint for whoscored.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when whoscored.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 whoscored.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
19h 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 player comparison tool using get_player_stats to contrast rating, goals, and passSuccess across tournaments for two players.
  • Map passing networks for a specific match using x, y, end_x, end_y coordinates from get_match_events.
  • Track a team's season schedule and results by polling list_matches for fixture dates, scores, and opponent IDs.
  • Identify high-performing teams in a league by comparing possession, rating, and goals from get_team_stats across multiple team IDs.
  • Automate scouting reports by querying search for player names and then pulling full seasonal records via get_player_stats.
  • Analyze pressing and defensive events by filtering event_type and outcome fields in get_match_events for a specific team.
  • Resolve team or player slugs for URL construction by using the slug field returned from the search endpoint.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does WhoScored have an official developer API?+
WhoScored does not publish an official public developer API or documentation portal. There is no registered API key program or official endpoints available to third-party developers.
What does get_match_events return, and does it cover live matches?+
It returns all recorded events for a completed match: minute, second, player_id, player_name, team_id, event_type, outcome, pass coordinates (x, y, end_x, end_y), and per-event qualifiers. The endpoint only covers completed matches — in-progress live match data is not currently returned. You can fork this API on Parse and revise it to add a live-match polling endpoint.
Can I retrieve historical seasons beyond the current season for a team's fixtures?+
The list_matches endpoint returns fixtures and results for the current season. Historical season fixture lists are not currently covered. The API does surface multi-season records in get_player_stats and get_team_stats, but fixture-level history per team is outside the current scope. You can fork the API on Parse and revise it to add a historical fixtures endpoint.
Are league table standings or tournament-level standings available?+
Not currently. The API covers player and team seasonal stats, match events, and fixture lists. League standings or table positions are not exposed by any endpoint. You can fork this API on Parse and revise it to add a standings endpoint.
How are player and team IDs structured, and can I use them without calling search first?+
IDs are numeric strings (e.g. player_id or team_id) that correspond to WhoScored's internal entity identifiers. If you already know a numeric ID from a WhoScored URL, you can pass it directly to get_player_stats, get_team_stats, or list_matches without calling search first. The search endpoint is the discovery mechanism when you only have a name.
Page content last updated . Spec covers 5 endpoints from whoscored.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.
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.
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.
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.
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.
besoccer.com API
Access comprehensive football data to discover team profiles, player rosters, match results, upcoming fixtures, and league standings across competitions. Search for specific teams and competitions to build your own soccer analytics, fantasy league tools, or sports tracking applications.
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.