Marketplace
No threads yet
Live

get_summoner_profile

leagueofgraphs.com

Retrieves a League of Legends summoner profile from https://leagueofgraphs.com, including current rank, recent match history, and peak ranks by season. Accepts a Riot ID and region.

Parameters3
Runs19
Updated10d ago
Degraded19 runs · 89.4% 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 get_summoner_profile?

Retrieves a League of Legends summoner profile from https://leagueofgraphs.com, including current rank, recent match history, and peak ranks by season. Accepts a Riot ID and region. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass riot_id, region, match_limit and get the result back without maintaining a scraper.

Response

{
  "region": "<string>",
  "message": "<string>",
  "profile": {},
  "riot_id": "<string>",
  "peak_ranks": [
    {}
  ],
  "source_url": "<string>",
  "current_ranks": [
    {}
  ],
  "match_history": [
    {}
  ],
  "profile_exists": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7eada655-5afd-40f9-b04f-1155ea1294a7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7eada655-5afd-40f9-b04f-1155ea1294a7",
    "variables": {
        "riot_id": "Hide on bush#KR1",
        "region": "kr",
        "match_limit": 10
    }
}'

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="7eada655-5afd-40f9-b04f-1155ea1294a7") — the "get_summoner_profile" function, which retrieves a League of Legends summoner profile from https://leagueofgraphs.com, including current rank, recent match history, and peak ranks by season. Accepts a Riot ID and region..

It takes riot_id (str), region (str), match_limit (int). Return the result as structured JSON.