Live
get_ranking_players
pokerdb.thehendonmob.comReturns one 100-player page from a ranking on https://pokerdb.thehendonmob.com with ranks, player IDs, countries, values and pagination metadata.
Parameters2
Runs6
Updated3d ago
Operational6 runs · 100% 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_ranking_players?
Returns one 100-player page from a ranking on https://pokerdb.thehendonmob.com with ranks, player IDs, countries, values and pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass ranking_id, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"players": [
{
"name": "<string>",
"rank": 0,
"value": "<string>",
"country": "<string>",
"player_id": 0,
"player_url": "<string>",
"rank_label": "<string>",
"country_code": "<string>"
}
],
"per_page": 0,
"ranking_id": 0,
"source_url": "<string>",
"total_pages": 0,
"generated_on": "<string>",
"ranking_name": "<string>",
"has_next_page": true,
"total_players": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/4328c853-772f-4768-a67b-943bfdb6b40a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4328c853-772f-4768-a67b-943bfdb6b40a",
"variables": {
"ranking_id": 11,
"page": 1
}
}'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="4328c853-772f-4768-a67b-943bfdb6b40a") — the "get_ranking_players" function, which returns one 100-player page from a ranking on https://pokerdb.thehendonmob.com with ranks, player IDs, countries, values and pagination metadata.. It takes ranking_id (int), page (int). Return the result as structured JSON.