search_players
playerelo.footballSearches https://playerelo.football for football players by name and returns Elo-ranked matching player records with ratings, ranks, teams, positions, and all available record details. Supports limit/offset pagination.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_players?
Searches https://playerelo.football for football players by name and returns Elo-ranked matching player records with ratings, ranks, teams, positions, and all available record details. Supports limit/offset pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit, offset and get the result back without maintaining a scraper.
Response
{
"total": 0,
"players": [
{}
],
"has_more": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/915040a9-3b73-4d0f-995c-65c469cf0562/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "915040a9-3b73-4d0f-995c-65c469cf0562",
"variables": {
"query": "Messi",
"limit": 25,
"offset": 0
}
}'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="915040a9-3b73-4d0f-995c-65c469cf0562") — the "search_players" function, which searches https://playerelo.football for football players by name and returns Elo-ranked matching player records with ratings, ranks, teams, positions, and all available record details. Supports limit/offset pagination.. It takes query (str), limit (int), offset (int). Return the result as structured JSON.