Live
get_event_match_results
ittf.comReturns up to 10 recent official match results for an event from https://ittf.com, including players, game scores, duration, venue, and all non-empty source fields.
Parameters1
Runs6
Updated1d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_event_match_results?
Returns up to 10 recent official match results for an event from https://ittf.com, including players, game scores, duration, venue, and all non-empty source fields. 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
{
"source": "<string>",
"status": "<string>",
"results": [
{}
],
"event_id": 0,
"result_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/0ef9ebf4-3ed1-43db-a088-5bd5904f49bb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0ef9ebf4-3ed1-43db-a088-5bd5904f49bb",
"variables": {
"event_id": 3246
}
}'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="0ef9ebf4-3ed1-43db-a088-5bd5904f49bb") — the "get_event_match_results" function, which returns up to 10 recent official match results for an event from https://ittf.com, including players, game scores, duration, venue, and all non-empty source fields.. It takes event_id (int). Return the result as structured JSON.