Discover/FIDE API
live

FIDE APIratings.fide.com

Access FIDE chess player profiles, top 100 rankings, rating history, and game statistics across standard, rapid, and blitz time controls.

This API takes change requests — .
Endpoint health
verified 2d ago
get_top_players
search_players
get_player_profile
get_player_titles
4/4 passing latest checkself-healing
Endpoints
4
Updated
9d ago

What is the FIDE API?

The FIDE Ratings API exposes 4 endpoints covering the official chess ratings database at ratings.fide.com. Use get_top_players to retrieve the top 100 players for any ranking category, search_players to find players by name or FIDE ID, and get_player_profile to pull a full profile including ratings across all three time controls, game statistics broken down by color and time control, ranking history, and a list of recent opponents.

This call costs1 credit / call— charged only on success
Try it
Ranking category.
api.parse.bot/scraper/9565d770-db40-4e26-8563-4394e5d962cf/<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/9565d770-db40-4e26-8563-4394e5d962cf/get_top_players?category=open' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalmissing one? ·

Fetch the top 100 players list for a given category. Returns rank, name, FIDE ID, federation, rating, and birth year for each player. The category determines which ranking list is returned (e.g. open, women, juniors). Results are ordered by rank descending.

Input
ParamTypeDescription
categorystringRanking category.
Response
{
  "type": "object",
  "fields": {
    "players": "array of player objects with rank, name, fide_id, federation, rating, and birth_year",
    "category": "string indicating the requested ranking category"
  },
  "sample": {
    "data": {
      "players": [
        {
          "name": "Carlsen, Magnus",
          "rank": 1,
          "rating": 2841,
          "fide_id": "1503014",
          "birth_year": 1990,
          "federation": "NOR"
        },
        {
          "name": "Caruana, Fabiano",
          "rank": 2,
          "rating": 2792,
          "fide_id": "2020009",
          "birth_year": 1992,
          "federation": "USA"
        }
      ],
      "category": "open"
    },
    "status": "success"
  }
}

About the FIDE API

Player Search and Lookup

The search_players endpoint accepts a query parameter (partial name or numeric FIDE ID) and returns matching players with fide_id, name, title, federation, standard_rating, rapid_rating, blitz_rating, and birth_year. It supports partial name matches, so querying "Carlsen" will return Magnus Carlsen alongside any other registered players with that name fragment.

Top Rankings

The get_top_players endpoint returns the current top 100 list for a given category. Each entry includes rank, name, fide_id, federation, rating, and birth_year. The category parameter controls which list is returned — options cover open, women, junior, and similar ranking groups maintained by FIDE. Results are ordered by rank.

Full Player Profiles

The get_player_profile endpoint takes a numeric FIDE ID string and returns a detailed record: std_rating, fide_title, federation, birth_year, photo_url, a statistics array breaking down wins, draws, and losses by color and time control, a ranks object mapping each ranking category to the year it was achieved, and an opponents array with id_number, name, and country for recent opponents.

Non-Playing Titles

The get_player_titles endpoint retrieves arbiter and trainer designations associated with a FIDE ID. The titles array returns license level, license status, and title strings from the Arbiter/Trainer section of the player's profile — useful for applications that need to distinguish over-the-board players from officiating or coaching staff.

Reliability & maintenanceVerified

The FIDE API is a managed, monitored endpoint for ratings.fide.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ratings.fide.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 ratings.fide.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
2d ago
Latest check
4/4 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 FIDE top-100 leaderboard displaying federation, rating, and birth year for any ranking category
  • Autocomplete a player search field using partial name queries with standard, rapid, and blitz ratings displayed per result
  • Display a player's career peak rankings by year using the ranks field from get_player_profile
  • Analyze win/draw/loss ratios by color and time control from the statistics array for coaching or scouting tools
  • Identify certified FIDE arbiters and trainers for a tournament management platform using get_player_titles
  • Compare rating trajectories between two players by fetching their profiles and plotting std_rating alongside ranking history
  • Populate an opponent history view with federation and name data from the opponents array in a player profile
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 FIDE provide an official developer API for ratings.fide.com?+
FIDE does not publish a documented public developer API for ratings.fide.com. There is no official REST or GraphQL endpoint with API keys or documentation available to third-party developers.
What does `get_player_profile` return beyond a rating number?+
It returns statistics (wins, draws, losses segmented by piece color and time control), a ranks object mapping each ranking category to the year the player achieved it, an opponents array with FIDE IDs, names, and countries, a photo_url, fide_title, federation, birth_year, and the player's standard rating. Rapid and blitz ratings at the profile level are not currently included in this endpoint's response fields — they are available via search_players instead.
Does the API cover historical rating changes month by month?+
Not currently. The endpoints return current ratings and a ranks history object tied to peak ranking years, but do not expose a month-by-month rating history series. You can fork this API on Parse and revise it to add an endpoint targeting the historical rating chart data for a given FIDE ID.
What ranking categories are available in `get_top_players`?+
The category parameter is optional and accepts strings corresponding to FIDE's published ranking lists, such as open, women, juniors, girls, rapid open, rapid women, blitz open, and blitz women. If omitted, a default list is returned. The endpoint always returns up to 100 players per category.
Does the API expose tournament results or individual game records?+
Not currently. The API covers player profiles, aggregate game statistics (totals by color and time control), rankings, and search — not individual tournament pairings or game-by-game results. You can fork this API on Parse and revise it to add an endpoint for tournament-level data available on the FIDE site.
Page content last updated . Spec covers 4 endpoints from ratings.fide.com.
Related APIs in SportsSee all →
chess.org.il API
Search and find detailed information about chess players registered with the Israel Chess Federation, including their ratings, rankings, and tournament history. Get comprehensive player profiles to research opponents, track performance statistics, or explore the Israeli chess community.
api.chess.com API
Rank the world's best chess players by retrieving top-ranked competitors from Chess.com's public leaderboards across different game categories like blitz, rapid, and classical. Track player performance and standings to see how the competitive chess landscape evolves across various time controls.
playerelo.football API
playerelo.football API
fminside.net API
Search and explore the Football Manager player database to find detailed profiles, stats, and information about individual players. Quickly look up players by ID or browse through the complete player catalog to discover talent, compare performance metrics, and research squad options.
fie.org API
Search and explore detailed fencer profiles, track athlete rankings, and review competition results and tournament brackets from the International Fencing Federation. Get comprehensive match histories and stay updated on world rankings across all fencing competitions.
chess-results.com API
Track chess tournaments across any federation by viewing schedules, pairings, and upcoming games, or browse available tournaments to find competitions of interest. Get detailed round-by-round matchups and game information to stay updated on tournament progress and player performance.
atptour.com API
Access data from atptour.com.
ittf.com API
Access official World Table Tennis player statistics, match results, and event data to track tournament outcomes, compare player rankings, and explore international competition details. Search player profiles, browse featured athletes, and review results from global table tennis events.