Live
get_player_rankings
pokerdb.thehendonmob.comReturns every ranking entry for a poker player from https://pokerdb.thehendonmob.com with ranking names, positions, numeric positions, and ranking URLs.
Parameters1
Runs7
Updated3d ago
Degraded7 runs · 85.7% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_player_rankings?
Returns every ranking entry for a poker player from https://pokerdb.thehendonmob.com with ranking names, positions, numeric positions, and ranking URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass player_id and get the result back without maintaining a scraper.
Response
{
"rankings": [
{
"name": "<string>",
"position": "<string>",
"ranking_url": "<string>",
"position_number": 0
}
],
"player_id": "<string>",
"player_url": "<string>",
"player_name": "<string>",
"rankings_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/8250bd18-026c-486f-bf2e-370d57218059/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8250bd18-026c-486f-bf2e-370d57218059",
"variables": {
"player_id": "181"
}
}'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="8250bd18-026c-486f-bf2e-370d57218059") — the "get_player_rankings" function, which returns every ranking entry for a poker player from https://pokerdb.thehendonmob.com with ranking names, positions, numeric positions, and ranking URLs.. It takes player_id (str). Return the result as structured JSON.