Marketplace
No threads yet
Live

get_player_details

futbin.com

Returns detailed EA FC 26 player identity, category and sub-stat ratings, and current console and PC market prices from https://futbin.com by Futbin player ID.

Parameters1
Runs8
Updated3d ago
Degraded8 runs · 75% 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_player_details?

Returns detailed EA FC 26 player identity, category and sub-stat ratings, and current console and PC market prices from https://futbin.com by Futbin player ID. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_id and get the result back without maintaining a scraper.

Response

{
  "player": {},
  "game_year": 0,
  "player_id": 0,
  "player_url": "<string>",
  "source_url": "<string>",
  "market_prices": [
    {}
  ],
  "stat_categories": [
    {
      "name": "<string>",
      "overall": 0,
      "sub_stats": [
        {
          "name": "<string>",
          "value": 0
        }
      ]
    }
  ],
  "base_stats_total": 0,
  "in_game_stats_total": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/168ef1b8-e1de-444a-8c4d-b1f32e120ed6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "168ef1b8-e1de-444a-8c4d-b1f32e120ed6",
    "variables": {
        "player_id": 25561
    }
}'

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="168ef1b8-e1de-444a-8c4d-b1f32e120ed6") — the "get_player_details" function, which returns detailed EA FC 26 player identity, category and sub-stat ratings, and current console and PC market prices from https://futbin.com by Futbin player ID..

It takes player_id (int). Return the result as structured JSON.