list_poker_venues
pokerdb.thehendonmob.comLists poker venues and casinos from https://pokerdb.thehendonmob.com with starting-letter, country or region code, and page filters. Returns venue locations and 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_venues?
Lists poker venues and casinos from https://pokerdb.thehendonmob.com with starting-letter, country or region code, and page filters. Returns venue locations and 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,
"venues": [
{
"url": "<string>",
"name": "<string>",
"country": "<string>",
"location": "<string>",
"country_code": "<string>"
}
],
"per_page": 0,
"total_pages": 0,
"total_venues": 0,
"has_next_page": true,
"starting_letter": "<string>",
"region_or_country_code": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/28c88cb5-c35c-4cd6-899d-e7fbd785bc08/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "28c88cb5-c35c-4cd6-899d-e7fbd785bc08",
"variables": {
"starting_letter": "",
"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="28c88cb5-c35c-4cd6-899d-e7fbd785bc08") — the "list_poker_venues" function, which lists poker venues and casinos from https://pokerdb.thehendonmob.com with starting-letter, country or region code, and page filters. Returns venue locations and pagination metadata.. It takes starting_letter (str), region_or_country_code (str), page (int). Return the result as structured JSON.