Marketplace
No threads yet
Live

get_top_players

ratings.fide.com

Fetches the official top 100 FIDE players for a selected standard, rapid, or blitz category from https://ratings.fide.com. Returns rank, name, FIDE ID, federation, rating, and birth year for every player.

Parameters1
Runs15
Updated9d ago
Degraded15 runs · 66.6% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_top_players?

Fetches the official top 100 FIDE players for a selected standard, rapid, or blitz category from https://ratings.fide.com. Returns rank, name, FIDE ID, federation, rating, and birth year for every player. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "players": [
    {
      "name": "<string>",
      "rank": 0,
      "rating": 0,
      "fide_id": "<string>",
      "birth_year": 0,
      "federation": "<string>"
    }
  ],
  "category": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/826626ac-070f-41c3-be4f-74974a9cd8e9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "826626ac-070f-41c3-be4f-74974a9cd8e9",
    "variables": {
        "category": "open"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="826626ac-070f-41c3-be4f-74974a9cd8e9") — the "get_top_players" function, which fetches the official top 100 FIDE players for a selected standard, rapid, or blitz category from https://ratings.fide.com. Returns rank, name, FIDE ID, federation, rating, and birth year for every player..

It takes category (str). Return the result as structured JSON.