Marketplace
No threads yet
Live

get_world_rankings

ittf.com

Returns the complete world ranking table for one category from https://ittf.com, including positions, players or pairs, associations, points, and ranking changes.

Parameters1
Runs4
Updated1d ago
Operational4 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_world_rankings?

Returns the complete world ranking table for one category from https://ittf.com, including positions, players or pairs, associations, points, and ranking changes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category and get the result back without maintaining a scraper.

Response

{
  "source": "<string>",
  "category": "<string>",
  "rankings": [
    {}
  ],
  "published_at": "<string>",
  "category_code": "<string>",
  "ranking_count": 0,
  "subevent_code": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/08c88de2-cf78-4f7a-aa57-8e7a8af10ef8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "08c88de2-cf78-4f7a-aa57-8e7a8af10ef8",
    "variables": {
        "category": "senior_mens_singles"
    }
}'

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="08c88de2-cf78-4f7a-aa57-8e7a8af10ef8") — the "get_world_rankings" function, which returns the complete world ranking table for one category from https://ittf.com, including positions, players or pairs, associations, points, and ranking changes..

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