get_fm24_top_role_players
fmdatalab.comReturns FM24's highest-scoring player for each of 117 playable roles from https://www.fmdatalab.com, with role scores, biographical details, club, wages, and transfer value. Filter by position code or player-name substring.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_fm24_top_role_players?
Returns FM24's highest-scoring player for each of 117 playable roles from https://www.fmdatalab.com, with role scores, biographical details, club, wages, and transfer value. Filter by position code or player-name substring. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass position_code, player_name and get the result back without maintaining a scraper.
Response
{
"count": 0,
"dataset": "<string>",
"players": [
{
"age": 0,
"club": "<string>",
"duty": "<string>",
"name": "<string>",
"role": "<string>",
"height": "<string>",
"weight": "<string>",
"division": "<string>",
"role_key": "<string>",
"duty_code": "<string>",
"player_uid": "<string>",
"role_score": 0,
"nationality": "<string>",
"weekly_wage": "<string>",
"position_code": "<string>",
"role_position": "<string>",
"transfer_value": "<string>",
"weekly_wage_gbp": 0,
"playable_positions": "<string>"
}
],
"source_url": "<string>",
"applied_filters": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/17e803d7-0d35-4f5d-9df3-d0ae3054a344/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "17e803d7-0d35-4f5d-9df3-d0ae3054a344",
"variables": {
"position_code": "",
"player_name": ""
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="17e803d7-0d35-4f5d-9df3-d0ae3054a344") — the "get_fm24_top_role_players" function, which returns FM24's highest-scoring player for each of 117 playable roles from https://www.fmdatalab.com, with role scores, biographical details, club, wages, and transfer value. Filter by position code or player-name substring.. It takes position_code (str), player_name (str). Return the result as structured JSON.