list_poker_players
pokerdb.thehendonmob.comLists 100 poker players per page from https://pokerdb.thehendonmob.com, sorted alphabetically by the site index. Supports filtering by starting letter, region or country code, and page number with has_next_page pagination metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_poker_players?
Lists 100 poker players per page from https://pokerdb.thehendonmob.com, sorted alphabetically by the site index. Supports filtering by starting letter, region or country code, and page number with has_next_page pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass starting_letter, region_or_country_code, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"players": [
{
"url": "<string>",
"name": "<string>",
"country": "<string>",
"player_id": 0,
"country_code": "<string>"
}
],
"per_page": 0,
"total_pages": 0,
"has_next_page": true,
"total_players": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d18d5c0e-d1a5-4632-af14-a9c98919f2e5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d18d5c0e-d1a5-4632-af14-a9c98919f2e5",
"variables": {
"starting_letter": "A",
"region_or_country_code": "",
"page": 1
}
}'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="d18d5c0e-d1a5-4632-af14-a9c98919f2e5") — the "list_poker_players" function, which lists 100 poker players per page from https://pokerdb.thehendonmob.com, sorted alphabetically by the site index. Supports filtering by starting letter, region or country code, and page number with has_next_page pagination metadata.. It takes starting_letter (str), region_or_country_code (str), page (int). Return the result as structured JSON.