Marketplace
No threads yet
Live

get_event_calendar

ittf.com

Fetches the complete official World Table Tennis event calendar for one year from https://ittf.com. Returns every non-empty event field, including names, dates, locations, event types, tiers, links, and identifiers.

Parameters1
Runs9
Updated10d 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_calendar?

Fetches the complete official World Table Tennis event calendar for one year from https://ittf.com. Returns every non-empty event field, including names, dates, locations, event types, tiers, links, and identifiers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year and get the result back without maintaining a scraper.

Response

{
  "year": 0,
  "events": [
    {}
  ],
  "source": "<string>",
  "event_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/31751879-b273-43a3-94a8-87426d19cd28/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "31751879-b273-43a3-94a8-87426d19cd28",
    "variables": {
        "year": 2026
    }
}'

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="31751879-b273-43a3-94a8-87426d19cd28") — the "get_event_calendar" function, which fetches the complete official World Table Tennis event calendar for one year from https://ittf.com. Returns every non-empty event field, including names, dates, locations, event types, tiers, links, and identifiers..

It takes year (int). Return the result as structured JSON.