Marketplace
No threads yet
Live

list_venue_recurring_festivals

pokerdb.thehendonmob.com

Returns all recurring tournaments for one venue from https://pokerdb.thehendonmob.com, including festival IDs, names, dates, status and links.

Parameters1
Runs6
Updated3d ago
Operational6 runs · 100% 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_venue_recurring_festivals?

Returns all recurring tournaments for one venue from https://pokerdb.thehendonmob.com, including festival IDs, names, dates, status and links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass venue_slug and get the result back without maintaining a scraper.

Response

{
  "location": "<string>",
  "venue_id": 0,
  "festivals": [
    {
      "date": "<string>",
      "name": "<string>",
      "status": "<string>",
      "festival_id": 0,
      "festival_url": "<string>"
    }
  ],
  "source_url": "<string>",
  "venue_name": "<string>",
  "venue_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/755466a5-8051-43a2-bbc9-dd9552507f0a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "755466a5-8051-43a2-bbc9-dd9552507f0a",
    "variables": {
        "venue_slug": "seminole-hard-rock-hotel-casino-382"
    }
}'

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="755466a5-8051-43a2-bbc9-dd9552507f0a") — the "list_venue_recurring_festivals" function, which returns all recurring tournaments for one venue from https://pokerdb.thehendonmob.com, including festival IDs, names, dates, status and links..

It takes venue_slug (str). Return the result as structured JSON.