Marketplace
No threads yet
Live

search_fc26_players

futwiz.com

Searches EA FC 26 Ultimate Team player cards on https://www.futwiz.com and returns auto-iterated results with complete attributes, prices, card image URLs, playstyles, positions, and pagination metadata.

Parameters7
Runs11
Updated10d ago
Failing11 runs · 63.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 search_fc26_players?

Searches EA FC 26 Ultimate Team player cards on https://www.futwiz.com and returns auto-iterated results with complete attributes, prices, card image URLs, playstyles, positions, and pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass search, start_page, page_size, max_pages, sort_by, sort_direction, filters and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "source": "<string>",
  "players": [
    {}
  ],
  "sort_by": "<string>",
  "has_more": true,
  "returned": 0,
  "next_page": 0,
  "page_size": 0,
  "start_page": 0,
  "total_pages": 0,
  "pages_fetched": 0,
  "total_results": 0,
  "sort_direction": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/03cc4dab-06e3-414c-8c1b-a940396d3da6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "03cc4dab-06e3-414c-8c1b-a940396d3da6",
    "variables": {
        "search": "",
        "start_page": 1,
        "page_size": 20,
        "max_pages": 2,
        "sort_by": "rating",
        "sort_direction": "desc",
        "filters": null
    }
}'

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="03cc4dab-06e3-414c-8c1b-a940396d3da6") — the "search_fc26_players" function, which searches EA FC 26 Ultimate Team player cards on https://www.futwiz.com and returns auto-iterated results with complete attributes, prices, card image URLs, playstyles, positions, and pagination metadata..

It takes search (str), start_page (int), page_size (int), max_pages (int), sort_by (str), sort_direction (str), filters (dict[str, Any] | None). Return the result as structured JSON.