Marketplace
No threads yet
Live

search_players

ratings.fide.com

Searches the official player database at https://ratings.fide.com by partial name or FIDE ID. Returns every match with FIDE ID, name, playing and trainer titles, federation, standard, rapid, and blitz ratings, and birth year.

Parameters1
Runs41
Updated10d ago
Degraded41 runs · 60.9% 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 search_players?

Searches the official player database at https://ratings.fide.com by partial name or FIDE ID. Returns every match with FIDE ID, name, playing and trainer titles, federation, standard, rapid, and blitz ratings, and birth year. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "players": [
    {
      "name": "<string>",
      "title": "<string>",
      "fide_id": "<string>",
      "birth_year": 0,
      "federation": "<string>",
      "blitz_rating": 0,
      "rapid_rating": 0,
      "trainer_title": "<string>",
      "standard_rating": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7bc06f07-ae55-4664-872d-6020d8fe189e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7bc06f07-ae55-4664-872d-6020d8fe189e",
    "variables": {
        "query": "1503014"
    }
}'

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="7bc06f07-ae55-4664-872d-6020d8fe189e") — the "search_players" function, which searches the official player database at https://ratings.fide.com by partial name or FIDE ID. Returns every match with FIDE ID, name, playing and trainer titles, federation, standard, rapid, and blitz ratings, and birth year..

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