Marketplace
No threads yet
Live

get_event_details

pokerdb.thehendonmob.com

Returns event metadata and complete finisher results from https://pokerdb.thehendonmob.com, including places, countries, player IDs, prizes and GPI points.

Parameters1
Runs9
Updated4d 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_event_details?

Returns event metadata and complete finisher results from https://pokerdb.thehendonmob.com, including places, countries, player IDs, prizes and GPI points. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_id and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "venue": "<string>",
  "entries": 0,
  "event_id": "<string>",
  "venue_id": "<string>",
  "event_url": "<string>",
  "finishers": [
    {
      "place": "<string>",
      "prize": "<string>",
      "country": "<string>",
      "player_id": "<string>",
      "gpi_points": 0,
      "player_url": "<string>",
      "player_name": "<string>",
      "country_code": "<string>",
      "place_number": 0,
      "prize_amount": 0,
      "alternate_prize": "<string>",
      "alternate_prize_amount": 0
    }
  ],
  "venue_url": "<string>",
  "date_parts": [
    "<string>"
  ],
  "event_name": "<string>",
  "prize_pool": "<string>",
  "venue_name": "<string>",
  "venue_slug": "<string>",
  "festival_id": "<string>",
  "country_code": "<string>",
  "festival_url": "<string>",
  "festival_name": "<string>",
  "venue_location": "<string>",
  "total_finishers": 0,
  "prize_pool_amount": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4f55f61e-500f-4cc4-88e4-d95826d00ffe/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4f55f61e-500f-4cc4-88e4-d95826d00ffe",
    "variables": {
        "event_id": "1248779"
    }
}'

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="4f55f61e-500f-4cc4-88e4-d95826d00ffe") — the "get_event_details" function, which returns event metadata and complete finisher results from https://pokerdb.thehendonmob.com, including places, countries, player IDs, prizes and GPI points..

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