Marketplace
No threads yet
Live

list_free_agents

transfermarkt.com.br

Returns 50 paginated free agents from https://transfermarkt.com.br with optional nationality and last-competition filters plus complete player, club and market-value fields.

Parameters3
Runs10
Updated3d ago
Operational10 runs · 100% 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 list_free_agents?

Returns 50 paginated free agents from https://transfermarkt.com.br with optional nationality and last-competition filters plus complete player, club and market-value fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, nationality_country_id, last_competition_id and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "players": [
    {
      "age": 0,
      "name": "<string>",
      "height": "<string>",
      "position": "<string>",
      "height_cm": 0,
      "image_url": "<string>",
      "player_id": 0,
      "player_slug": "<string>",
      "profile_url": "<string>",
      "last_club_id": 0,
      "market_value": "<string>",
      "last_club_url": "<string>",
      "nationalities": [
        "<string>"
      ],
      "last_club_name": "<string>",
      "last_club_slug": "<string>",
      "preferred_foot": "<string>",
      "market_value_eur": 0,
      "contract_end_date": "<string>",
      "last_club_logo_url": "<string>",
      "last_competition_id": "<string>",
      "last_competition_url": "<string>",
      "last_competition_name": "<string>",
      "last_competition_slug": "<string>",
      "nationality_flag_urls": [
        "<string>"
      ],
      "previous_market_value": "<string>",
      "last_competition_country": "<string>",
      "previous_market_value_eur": 0,
      "last_competition_country_flag_url": "<string>"
    }
  ],
  "page_size": 0,
  "total_pages": 0,
  "has_next_page": true,
  "returned_count": 0,
  "last_competition_id": "<string>",
  "last_competition_name": "<string>",
  "nationality_country_id": 0,
  "nationality_country_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/11ab4328-98df-43f1-8dec-ccc5a8759501/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "11ab4328-98df-43f1-8dec-ccc5a8759501",
    "variables": {
        "page": 1,
        "nationality_country_id": 0,
        "last_competition_id": ""
    }
}'

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="11ab4328-98df-43f1-8dec-ccc5a8759501") — the "list_free_agents" function, which returns 50 paginated free agents from https://transfermarkt.com.br with optional nationality and last-competition filters plus complete player, club and market-value fields..

It takes page (int), nationality_country_id (int), last_competition_id (str). Return the result as structured JSON.