Discover/FIFA API
live

FIFA APIfifa.com

Access FIFA world rankings, tournament fixtures, match timelines, player stats, and news from fifa.com via 17 structured endpoints.

Endpoint health
verified 17h ago
get_womens_world_ranking
get_tournament_teams
get_player_profile
get_mens_world_ranking
get_tournament_scores_fixtures
17/17 passing latest checkself-healing
Endpoints
17
Updated
15d ago

What is the FIFA API?

The FIFA.com API covers 17 endpoints returning men's and women's world rankings, tournament fixtures and standings, detailed match data, player profiles, and news articles from fifa.com. The get_match_timeline endpoint, for example, returns a full sequence of in-match events — goals, cards, substitutions — keyed by match minute and player ID, making it straightforward to reconstruct how any FIFA tournament match unfolded.

Try it
Maximum number of teams to return.
api.parse.bot/scraper/29ef51e4-86d0-4580-a598-4c86dfa6e5ff/<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/29ef51e4-86d0-4580-a598-4c86dfa6e5ff/get_mens_world_ranking?limit=10' \
  -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 fifa-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.

"""Walkthrough: FIFA Data API — rankings, competitions, matches, players, articles."""
from parse_apis.FIFA_Data_API import FIFA, CompetitionId, SeasonId, NotFoundError

client = FIFA()

# Men's world ranking — top teams by FIFA points.
for team in client.ranked_teams.mens(limit=5):
    print(team.rank, team.country_code, team.total_points, team.confederation_name)

# List competitions, then drill into one via constructible.
comp = client.competitions.list(limit=1).first()
if comp:
    print(comp.id, comp.name)

# Construct a competition and list its seasons.
world_cup = client.competition(id=CompetitionId._17)
season = world_cup.seasons(limit=1).first()
if season:
    for standing in world_cup.standings(stage_id="289273", season_id=SeasonId._285023, limit=3):
        print(standing.position, standing.team_id, standing.points, standing.goal_difference)

# Fetch a player profile with error handling.
try:
    player = client.players.get(player_id="406304")
    print(player.name, player.country_code, player.international_caps, player.goals)
except NotFoundError as exc:
    print(f"Player not found: {exc}")

# Browse recent articles.
article = client.articles.list(limit=1).first()
if article:
    print(article.title, article.published_date)

# Search for content.
results = client.search_responses.search(query="World Cup")
print(results.took, len(results.hits))

print("exercised: ranked_teams.mens / competitions.list / competition.seasons / competition.standings / players.get / articles.list / search_responses.search")
All endpoints · 17 totalmissing one? ·

Retrieve the full FIFA Men's World Ranking. Returns teams ranked by FIFA points in descending order. Each team includes rank, points, movement since last ranking, confederation, and country code.

Input
ParamTypeDescription
limitintegerMaximum number of teams to return.
Response
{
  "type": "object",
  "fields": {
    "Results": "array of ranked team objects with Rank, TeamName, TotalPoints, RankingMovement, ConfederationName, IdTeam, IdCountry"
  },
  "sample": {
    "data": {
      "Results": [
        {
          "Rank": 1,
          "Gender": 1,
          "IdTeam": "43946",
          "Matches": 50,
          "PubDate": "2026-04-01T13:00:00+00:00",
          "PrevRank": 3,
          "TeamName": [
            {
              "Locale": "en-GB",
              "Description": "France"
            }
          ],
          "IdCountry": "FRA",
          "TotalPoints": 1877,
          "IdConfederation": "27275",
          "RankingMovement": 2,
          "ConfederationName": "UEFA",
          "DecimalTotalPoints": 1877.32
        }
      ],
      "ContinuationHash": null,
      "ContinuationToken": null
    },
    "status": "success"
  }
}

About the FIFA API

Rankings and Tournaments

The get_mens_world_ranking and get_womens_world_ranking endpoints each return an ordered array of team objects including Rank, TeamName, and TotalPoints, with an optional limit parameter to cap the result set. Tournament discovery starts with get_tournaments_list, which returns a flat list of competitionId and name pairs. From there, get_tournament_seasons accepts a competition_id and returns all editions of that tournament with IdSeason, StartDate, and EndDate — the IDs returned here feed into the fixture and standings endpoints.

Fixtures, Standings, and Match Detail

get_tournament_scores_fixtures takes a season_id and returns every match in that season, including Home, Away, Date, Stadium, and MatchStatus. Group-stage standings are available via get_tournament_standings, which requires stage_id, season_id, and competition_id and returns position, points, wins, draws, losses, goals for, and goals against per team. For richer per-match data, get_match_detail returns lineups, officials, ball possession, and full score details. get_match_timeline goes further, providing an event-level breakdown — each object in the Event array carries Type, TypeLocalized, MatchMinute, and IdPlayer.

Players and News

Player data is split across two endpoints. get_player_profile returns biographical fields — Name, Height, Weight, BirthDate — for a given player_id. get_player_stats takes a season_id for a completed or in-progress tournament and returns match-level statistics keyed by player ID. Note that this endpoint only produces results for seasons with available match data; historical seasons with no indexed data return empty.

News coverage comes through get_news_list, which returns article summaries with title, publishedDate, articlePageUrl, and thumbnail image. Individual articles are fetched with get_news_article using the entryId from the list response; the full body is returned as a structured Contentful rich-text document alongside heroImage and articlePublishedDate. The search endpoint accepts a free-text query and returns matched articles, videos, and documents with a total hit count and query duration in milliseconds.

Reliability & maintenanceVerified

The FIFA API is a managed, monitored endpoint for fifa.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fifa.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 fifa.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
17h ago
Latest check
17/17 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 FIFA World Rankings tracker showing Rank and TotalPoints for all men's or women's national teams.
  • Reconstruct match narratives by replaying goal and card events from get_match_timeline in chronological order.
  • Aggregate group-stage standings across multiple World Cup editions using get_tournament_standings with different season_id values.
  • Power a tournament calendar app with upcoming and past fixtures from get_tournament_scores_fixtures filtered by season.
  • Display player cards with height, weight, birth date, and season stats by combining get_player_profile with get_player_stats.
  • Surface FIFA+ news headlines and full article bodies in a football news aggregator using get_news_list and get_news_article.
  • Implement a football content search feature using the search endpoint to match queries against FIFA articles and videos.
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 FIFA have an official public developer API?+
FIFA does not publish a documented public developer API. There is no official endpoint documentation or API key program available at fifa.com for third-party developers.
What does get_match_centre return, and how does it differ from get_tournament_scores_fixtures?+
get_match_centre returns matches within a caller-supplied date range (from_date and to_date in YYYY-MM-DD format) regardless of competition, making it useful for cross-tournament day-by-day schedules. get_tournament_scores_fixtures returns all matches for a single season identified by season_id. Note that get_match_centre works best for recent and upcoming dates; older historical ranges may return empty results depending on indexing.
Does the API return live in-progress match data?+
get_match_timeline and get_match_detail reflect MatchStatus as an integer (0 indicates finished). The API does not expose a dedicated live-polling or streaming endpoint for real-time score updates during an active match. You can fork the API on Parse and revise it to add a polling endpoint that repeatedly fetches match detail during live windows.
Are historical player statistics across multiple seasons available?+
get_player_stats accepts a single season_id, so you retrieve stats one tournament season at a time. Aggregated career statistics across all seasons a player has appeared in are not currently returned by any endpoint. You can fork the API on Parse and revise it to loop across multiple season_id values and merge the results.
Does the API cover club competitions such as the FIFA Club World Cup separately from national team tournaments?+
All competitions are accessed through the same tournament endpoints — get_tournaments_list returns competitionId values for every competition available on the platform, which may include club tournaments. There is no separate endpoint dedicated exclusively to club competitions; coverage depends on what competitions appear in the tournaments list response.
Page content last updated . Spec covers 17 endpoints from fifa.com.
Related APIs in SportsSee all →
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.
fcbarcelona.com API
Access the latest FC Barcelona news, browse player profiles and squad rosters for both the first team and women's team, and check match schedules, results, and competition standings. Search across all available content to stay updated on team information, upcoming fixtures, and performance data.
fiba.basketball API
Track FIBA basketball games and scores by date, dive into game details, explore competition schedules, check world rankings, and search for the latest basketball news all in one place. Stay updated on international basketball with comprehensive data covering live games, team information, and competitive standings.
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.
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.
futbin.com API
Search and retrieve FIFA Ultimate Team player data including market prices, detailed statistics, and performance metrics. Analyze market trends and compare player values across the full EA FC player catalog.