get_match_objective_stats
liquipedia.netReturns per-game League of Legends team objective statistics from https://liquipedia.net, including kills, gold, towers, inhibitors, dragons, barons, heralds, void grubs, and Atakhan.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_match_objective_stats?
Returns per-game League of Legends team objective statistics from https://liquipedia.net, including kills, gold, towers, inhibitors, dragons, barons, heralds, void grubs, and Atakhan. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass match_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"games": [
{
"patch": "<string>",
"teams": [
{
"side": "<string>",
"barons": 0,
"result": "<string>",
"towers": 0,
"atakhan": 0,
"dragons": 0,
"heralds": 0,
"team_url": "<string>",
"team_name": "<string>",
"team_slug": "<string>",
"inhibitors": 0,
"total_gold": 0,
"void_grubs": 0,
"total_kills": 0,
"total_deaths": 0,
"total_assists": 0,
"total_gold_display": "<string>"
}
],
"winner": "<string>",
"duration": "<string>",
"winner_url": "<string>",
"game_number": 0,
"winner_slug": "<string>",
"duration_seconds": 0
}
],
"status": "<string>",
"match_id": "<string>",
"page_title": "<string>",
"source_url": "<string>",
"total_games": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/0fa2b77d-25a8-46e5-a4fe-2ae2b78bc884/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0fa2b77d-25a8-46e5-a4fe-2ae2b78bc884",
"variables": {
"match_id": "LCS26SumW3_0004",
"timeout_seconds": 40
}
}'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="0fa2b77d-25a8-46e5-a4fe-2ae2b78bc884") — the "get_match_objective_stats" function, which returns per-game League of Legends team objective statistics from https://liquipedia.net, including kills, gold, towers, inhibitors, dragons, barons, heralds, void grubs, and Atakhan.. It takes match_id (str), timeout_seconds (int). Return the result as structured JSON.