Marketplace
No threads yet
Live

list_ranking_categories

pokerdb.thehendonmob.com

Returns all matching poker ranking lists and their top five players from https://pokerdb.thehendonmob.com, with optional region, year, venue, and circuit filters.

Parameters4
Runs11
Updated3d ago
Degraded11 runs · 72.7% 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 list_ranking_categories?

Returns all matching poker ranking lists and their top five players from https://pokerdb.thehendonmob.com, with optional region, year, venue, and circuit filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, year, venue, circuit and get the result back without maintaining a scraper.

Response

{
  "filters": {},
  "rankings": [
    {
      "name": "<string>",
      "ranking_id": 0,
      "ranking_url": "<string>",
      "top_players": [
        {
          "name": "<string>",
          "rank": 0,
          "value": "<string>",
          "country": "<string>",
          "player_id": 0,
          "player_url": "<string>",
          "country_code": "<string>"
        }
      ]
    }
  ],
  "total_rankings": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b4d94c43-1933-4911-b77e-6cb8a439274a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b4d94c43-1933-4911-b77e-6cb8a439274a",
    "variables": {
        "region": "",
        "year": 0,
        "venue": "",
        "circuit": ""
    }
}'

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="b4d94c43-1933-4911-b77e-6cb8a439274a") — the "list_ranking_categories" function, which returns all matching poker ranking lists and their top five players from https://pokerdb.thehendonmob.com, with optional region, year, venue, and circuit filters..

It takes region (str), year (int), venue (str), circuit (str). Return the result as structured JSON.