Live
search_players
transfermarkt.com.brSearches players by name on https://transfermarkt.com.br and returns up to 10 quick-search matches with identity, club, position, nationality, age, and market value.
Parameters1
Runs7
Updated3d ago
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_players?
Searches players by name on https://transfermarkt.com.br and returns up to 10 quick-search matches with identity, club, position, nationality, age, and market value. 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
{
"query": "<string>",
"players": [
{
"age": 0,
"name": "<string>",
"agent": "<string>",
"club_id": 0,
"club_url": "<string>",
"position": "<string>",
"club_name": "<string>",
"club_slug": "<string>",
"image_url": "<string>",
"player_id": 0,
"player_slug": "<string>",
"profile_url": "<string>",
"market_value": "<string>",
"club_logo_url": "<string>",
"nationalities": [
"<string>"
]
}
],
"max_results": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/51053a8a-f744-4123-8e1a-dd3544287de6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "51053a8a-f744-4123-8e1a-dd3544287de6",
"variables": {
"query": "Neymar"
}
}'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="51053a8a-f744-4123-8e1a-dd3544287de6") — the "search_players" function, which searches players by name on https://transfermarkt.com.br and returns up to 10 quick-search matches with identity, club, position, nationality, age, and market value.. It takes query (str). Return the result as structured JSON.