Discover/The Analyst API
live

The Analyst APItheanalyst.com

Access Premier League team and player stats from The Analyst via 3 endpoints: team attacking/defensive/possession metrics, player xG rankings, and team ratings.

Endpoint health
verified 4d ago
get_team_statistics
get_team_ratings
get_player_statistics
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the The Analyst API?

The Analyst API provides Premier League football data across 3 endpoints covering team statistics, player xG rankings, and computed team ratings. The get_team_statistics endpoint returns multi-dimensional team metrics including xG, shot conversion, passing accuracy, tackles, and interceptions. Player and team data is timestamped, making it straightforward to detect when the underlying numbers were last refreshed.

Try it

No input parameters required.

api.parse.bot/scraper/e6f6bf30-885a-48c5-9cf9-8ffd5c214d93/<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/e6f6bf30-885a-48c5-9cf9-8ffd5c214d93/get_team_statistics' \
  -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 theanalyst-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.

from parse_apis.the_analyst_premier_league_api import TheAnalyst

client = TheAnalyst()

# Get team ratings sorted by overall rating
for rating in client.leagues.get_team_ratings(limit=5):
    print(rating.team_name, rating.rating, rating.attack_rating, rating.defense_rating)

# Get player xG rankings
for player in client.leagues.get_player_statistics(limit=3):
    print(player.player_name, player.xg, player.team_id)

# Get comprehensive team statistics
for team in client.leagues.get_team_statistics(limit=2):
    print(team.team_uuid, team.attack.goals, team.defending.goals_against, team.possession.accuracy)
All endpoints · 3 totalmissing one? ·

Get comprehensive Premier League team statistics including attacking metrics (goals, shots, xG, conversion rate), defensive metrics (goals against, shots against, xG against), possession stats (passes, accuracy, final third passes, tackles, interceptions), and miscellaneous stats (fouls, cards, substitutions). Returns data for all 20 teams sorted alphabetically. Single-page endpoint with no parameters.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "teams": "array of team statistics objects each containing team_uuid, attack, attack_non_pen, defending, possession, and misc sub-objects with detailed metrics",
    "competition": "string - League name (e.g. 'English Premier League')",
    "last_updated": "string - Data timestamp"
  },
  "sample": {
    "data": {
      "teams": [
        {
          "misc": {
            "reds": 0,
            "team": "Arsenal",
            "played": 38,
            "team_id": 3,
            "yellows": 51,
            "fouls_won": 409
          },
          "attack": {
            "xg": 65.6,
            "sot": 187,
            "team": "Arsenal",
            "goals": 71,
            "played": 38,
            "team_id": 3,
            "shot_conv": 12.84,
            "total_shots": 553
          },
          "defending": {
            "team": "Arsenal",
            "played": 38,
            "team_id": 3,
            "xg_against": 28.3,
            "goals_against": 27,
            "total_shots_against": 310
          },
          "team_uuid": "4dsgumo7d4zupm2ugsvm4zm4d",
          "possession": {
            "team": "Arsenal",
            "passes": 17897,
            "played": 38,
            "team_id": 3,
            "accuracy": 84.24,
            "pos_perc": 56.16
          }
        }
      ],
      "competition": "English Premier League",
      "last_updated": "2026-05-26 05:57:55.093825"
    },
    "status": "success"
  }
}

About the The Analyst API

Team Statistics

The get_team_statistics endpoint returns one object per Premier League team, identified by a team_uuid. Each team object breaks down into five sub-objects: attack (goals, shots, xG, conversion rate), attack_non_pen (penalty-excluded attacking figures), defending (goals against, shots against, xG against), possession (passes, accuracy, final-third passes), and misc (tackles, interceptions, and related metrics). The response also includes the competition string and a last_updated timestamp. No input parameters are required.

Player xG Rankings

The get_player_statistics endpoint returns a ranked list of Premier League players sorted by expected goals (xg). Each player object carries a player_id, player_name, first_name, last_name, team_id, and their xg value. The endpoint surfaces only xG as the ranking metric; other per-player stats such as assists, minutes played, or progressive carries are not included in the current response shape. A last_updated timestamp is included at the top level.

Team Ratings

The get_team_ratings endpoint returns all 20 Premier League teams sorted by rating descending, with each team assigned a rank. The rating model uses goals scored and conceded per game to produce an overall rating, plus separate attack_rating and defense_rating values, all on a 0–100 scale. Each record includes team_id, team_uuid, team_name, short_name, and a code field alongside the rating fields and matches_played. The competition string and last_updated timestamp appear at the response root.

Reliability & maintenanceVerified

The The Analyst API is a managed, monitored endpoint for theanalyst.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when theanalyst.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 theanalyst.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
4d ago
Latest check
3/3 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 live Premier League table widget using team ratings and attack/defense scores from get_team_ratings.
  • Power an xG leaderboard feature by pulling player xG values from get_player_statistics.
  • Compare team defensive solidity using the defending sub-object fields (goals against, shots against, xG against).
  • Visualize possession tendencies by extracting pass accuracy and final-third pass counts from the possession sub-object.
  • Track weekly squad form by polling last_updated across endpoints to detect data refreshes.
  • Model team efficiency by combining attack conversion rate with attack_non_pen figures to isolate open-play finishing.
  • Rank clubs by defensive xG against to identify teams outperforming or underperforming their expected defensive record.
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 The Analyst have an official developer API?+
The Analyst does not publish a publicly documented developer API. Their data products are offered as licensed commercial data feeds targeted at media and broadcast partners, not as a self-serve API for individual developers.
What does `get_team_statistics` return beyond basic goal counts?+
Each team record includes five sub-objects: attack (goals, shots, xG, conversion rate), attack_non_pen (penalty-excluded equivalents), defending (goals against, shots against, xG against), possession (passes, accuracy, final-third passes), and misc (tackles, interceptions). The competition name and a last_updated timestamp are also returned at the response root.
Does the API cover competitions outside the Premier League?+
Currently the API covers the English Premier League only. All three endpoints — get_team_statistics, get_player_statistics, and get_team_ratings — return Premier League data. You can fork this API on Parse and revise it to add endpoints targeting other competitions.
Can I retrieve historical season data or filter by match date?+
No date or season filter parameters are exposed. All three endpoints return the current-season state as of the last_updated timestamp. Historical season breakdowns are not available in the current spec. You can fork this API on Parse and revise it to add a historical data endpoint if that coverage is needed.
What player metrics are available beyond xG?+
The get_player_statistics endpoint currently exposes only the xg value alongside player and team identifiers. Metrics such as assists, progressive carries, minutes played, or defensive actions per player are not included. You can fork this API on Parse and revise it to extend the player response with additional stat fields.
Page content last updated . Spec covers 3 endpoints from theanalyst.com.
Related APIs in SportsSee all →
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.
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.
whoscored.com API
Search for players and teams, then dive deep into their performance metrics, match statistics, and detailed passing data to analyze football games and player abilities. Get comprehensive insights on team performance, individual player stats, and play-by-play event information to power your football analysis and decision-making.
uefa.com API
Track detailed player performance across UEFA competitions like Champions League, Europa League, and Conference League with seasonal rankings and match-by-match statistics. Search players, compare their stats, and analyze individual performance metrics to stay informed on top European football talent.
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.
statshub.com API
Access detailed football match statistics including xG, xGA, and possession metrics across multiple leagues, plus retrieve fixtures by date and current league standings. Get comprehensive season-level and match-level performance data to analyze team and player statistics in depth.
transfermarkt.it API
Access team market values and detailed player career statistics from Transfermarkt. Retrieve historical valuations across seasons, browse squad rosters, and pull per-season performance metrics — including goals, assists, cards, and minutes played — for any player.
football.co.il API
Track Israeli football league standings, fixtures, and team performance with comprehensive data on leagues, squads, and player statistics. Get detailed match information, top scorers, and team-specific stats to stay updated on the Israeli football season.