search_players
spotrac.comSearches players by name on https://spotrac.com and returns matching player IDs, names, positions, teams, profile URLs, and optional trending players from the same search page.
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://spotrac.com and returns matching player IDs, names, positions, teams, profile URLs, and optional trending players from the same search page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit, include_trending and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"source": "<string>",
"players": [
{}
],
"trending_count": 0,
"include_trending": true,
"query_match_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/14b55eb2-3cf4-47ea-9a73-9bbb231fd8e4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "14b55eb2-3cf4-47ea-9a73-9bbb231fd8e4",
"variables": {
"query": "mahomes",
"limit": 25,
"include_trending": true
}
}'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="14b55eb2-3cf4-47ea-9a73-9bbb231fd8e4") — the "search_players" function, which searches players by name on https://spotrac.com and returns matching player IDs, names, positions, teams, profile URLs, and optional trending players from the same search page.. It takes query (str), limit (int), include_trending (bool). Return the result as structured JSON.