Marketplace
No threads yet
Live

get_live_game_status

leagueofgraphs.com

Checks a League of Legends summoner profile on https://leagueofgraphs.com and returns whether the summoner is currently in a live game with a readable status.

Parameters2
Runs8
Updated3d ago
Operational8 runs · 100% 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_live_game_status?

Checks a League of Legends summoner profile on https://leagueofgraphs.com and returns whether the summoner is currently in a live game with a readable status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass riot_id, region and get the result back without maintaining a scraper.

Response

{
  "region": "<string>",
  "status": "<string>",
  "in_game": true,
  "riot_id": "<string>",
  "indicator": {},
  "source_url": "<string>",
  "profile_exists": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/76549df0-39a0-4bf3-b841-92a1551486f7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "76549df0-39a0-4bf3-b841-92a1551486f7",
    "variables": {
        "riot_id": "Hide on bush#KR1",
        "region": "kr"
    }
}'

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="76549df0-39a0-4bf3-b841-92a1551486f7") — the "get_live_game_status" function, which checks a League of Legends summoner profile on https://leagueofgraphs.com and returns whether the summoner is currently in a live game with a readable status..

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