Marketplace
No threads yet
Live

get_player_profile_by_slug

lolpros.gg

Retrieves the full professional League of Legends player profile by slug from https://lolpros.gg, including linked accounts, social links, league participation, and team history. Returns input_not_found when no player matches the slug.

Parameters3
Runs10
Updated9d ago
Operational10 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_player_profile_by_slug?

Retrieves the full professional League of Legends player profile by slug from https://lolpros.gg, including linked accounts, social links, league participation, and team history. Returns input_not_found when no player matches the slug. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug, server, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "slug": "<string>",
  "server": "<string>",
  "profile": {},
  "input_not_found": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ba94f91e-f5ad-4089-9067-c2ffc16d32ea/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ba94f91e-f5ad-4089-9067-c2ffc16d32ea",
    "variables": {
        "slug": "caps",
        "server": "EUW",
        "timeout_seconds": 20
    }
}'

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="ba94f91e-f5ad-4089-9067-c2ffc16d32ea") — the "get_player_profile_by_slug" function, which retrieves the full professional League of Legends player profile by slug from https://lolpros.gg, including linked accounts, social links, league participation, and team history. Returns input_not_found when no player matches the slug..

It takes slug (str), server (str), timeout_seconds (int). Return the result as structured JSON.