Marketplace
No threads yet
Live

get_poker_festival_schedule

pokerdb.thehendonmob.com

Retrieves the full schedule for a specific poker festival from https://pokerdb.thehendonmob.com. Returns festival metadata and all scheduled events with dates, event names, winners when available, and notes.

Parameters1
Runs9
Updated8d ago
Operational9 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 get_poker_festival_schedule?

Retrieves the full schedule for a specific poker festival from https://pokerdb.thehendonmob.com. Returns festival metadata and all scheduled events with dates, event names, winners when available, and notes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass festival_id and get the result back without maintaining a scraper.

Response

{
  "dates": "<string>",
  "venue": "<string>",
  "events": [
    {
      "end": "<string>",
      "date": "<string>",
      "notes": "<string>",
      "start": "<string>",
      "event_id": "<string>",
      "event_url": "<string>",
      "winner_id": "<string>",
      "event_name": "<string>",
      "winner_url": "<string>",
      "winner_name": "<string>",
      "calendar_url": "<string>",
      "winner_country": "<string>",
      "winner_country_code": "<string>"
    }
  ],
  "country": "<string>",
  "venue_id": "<string>",
  "venue_url": "<string>",
  "date_parts": [
    "<string>"
  ],
  "venue_name": "<string>",
  "festival_id": "<string>",
  "country_code": "<string>",
  "festival_url": "<string>",
  "festival_name": "<string>",
  "schedule_count": 0,
  "venue_location": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/948799cb-72f1-425e-97c5-4d52267149bd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "948799cb-72f1-425e-97c5-4d52267149bd",
    "variables": {
        "festival_id": "63883"
    }
}'

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="948799cb-72f1-425e-97c5-4d52267149bd") — the "get_poker_festival_schedule" function, which retrieves the full schedule for a specific poker festival from https://pokerdb.thehendonmob.com. Returns festival metadata and all scheduled events with dates, event names, winners when available, and notes..

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