list_poker_events
pokerdb.thehendonmob.comLists weekly poker events from https://pokerdb.thehendonmob.com, grouped chronologically with filters for date span, game, betting limit, buy-in, country or region, and city radius. Returns all matching events and week-pagination dates.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_poker_events?
Lists weekly poker events from https://pokerdb.thehendonmob.com, grouped chronologically with filters for date span, game, betting limit, buy-in, country or region, and city radius. Returns all matching events and week-pagination dates. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date, weeks, betting_limit, game_type, buyin_amount, buyin_currency, buyin_comparison, country_or_region_code, city, radius_miles and get the result back without maintaining a scraper.
Response
{
"city": "<string>",
"weeks": 0,
"groups": [
{
"date": "<string>",
"events": [
{
"end": "<string>",
"city": "<string>",
"name": "<string>",
"time": "<string>",
"start": "<string>",
"country": "<string>",
"event_id": "<string>",
"tour_url": "<string>",
"venue_id": "<string>",
"event_url": "<string>",
"tour_code": "<string>",
"tour_name": "<string>",
"venue_url": "<string>",
"date_range": "<string>",
"venue_name": "<string>",
"festival_id": "<string>",
"tour_season": "<string>",
"country_code": "<string>",
"festival_url": "<string>"
}
],
"weekday": "<string>"
}
],
"game_type": "<string>",
"range_text": "<string>",
"start_date": "<string>",
"event_count": 0,
"buyin_amount": 0,
"radius_miles": 0,
"betting_limit": "<string>",
"buyin_currency": "<string>",
"next_week_date": "<string>",
"buyin_comparison": "<string>",
"previous_week_date": "<string>",
"country_or_region_code": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c9ee3a13-2898-4179-9b2b-088f30c7736a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c9ee3a13-2898-4179-9b2b-088f30c7736a",
"variables": {
"date": "",
"weeks": 1,
"betting_limit": "",
"game_type": "",
"buyin_amount": 0,
"buyin_currency": "USD",
"buyin_comparison": "<=",
"country_or_region_code": "",
"city": "",
"radius_miles": 0
}
}'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="c9ee3a13-2898-4179-9b2b-088f30c7736a") — the "list_poker_events" function, which lists weekly poker events from https://pokerdb.thehendonmob.com, grouped chronologically with filters for date span, game, betting limit, buy-in, country or region, and city radius. Returns all matching events and week-pagination dates.. It takes date (str), weeks (int), betting_limit (str), game_type (str), buyin_amount (float), buyin_currency (str), buyin_comparison (str), country_or_region_code (str), city (str), radius_miles (int). Return the result as structured JSON.