get_top_solo_queue_players
lolpros.ggFetches the top 10 professional players for a regional solo queue ladder from https://lolpros.gg, ranked by composite score. Returns each player's identity, team, position, primary account rank and win rate, plus every other non-empty record field exposed by the site.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_top_solo_queue_players?
Fetches the top 10 professional players for a regional solo queue ladder from https://lolpros.gg, ranked by composite score. Returns each player's identity, team, position, primary account rank and win rate, plus every other non-empty record field exposed by the site. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region and get the result back without maintaining a scraper.
Response
{
"region": "<string>",
"players": [
{}
],
"player_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/0f560317-8397-4afe-8210-3ad7e9b68928/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0f560317-8397-4afe-8210-3ad7e9b68928",
"variables": {
"region": "EUW"
}
}'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="0f560317-8397-4afe-8210-3ad7e9b68928") — the "get_top_solo_queue_players" function, which fetches the top 10 professional players for a regional solo queue ladder from https://lolpros.gg, ranked by composite score. Returns each player's identity, team, position, primary account rank and win rate, plus every other non-empty record field exposed by the site.. It takes region (str). Return the result as structured JSON.