get_fighter_rankings
tapology.comFetches Tapology rankings from https://www.tapology.com for a promotion and weight-class slug. Returns the top ranked fighters with rank, name, fighter slug, record when shown, country code, and movement indicators.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_fighter_rankings?
Fetches Tapology rankings from https://www.tapology.com for a promotion and weight-class slug. Returns the top ranked fighters with rank, name, fighter slug, record when shown, country code, and movement indicators. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass promotion_slug, weight_class_slug and get the result back without maintaining a scraper.
Response
{
"count": 0,
"fighters": [
{
"name": "<string>",
"rank": 0,
"record": "<string>",
"country": "<string>",
"fighter_slug": "<string>",
"movement_value": 0,
"movement_symbol": "<string>",
"movement_indicator": "<string>"
}
],
"source_url": "<string>",
"promotion_slug": "<string>",
"weight_class_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/55a62c13-b71f-47e5-89aa-26727c00651f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "55a62c13-b71f-47e5-89aa-26727c00651f",
"variables": {
"promotion_slug": "ufc",
"weight_class_slug": "ultimate-fighting-championship-mens-lightweight-155-pounds"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="55a62c13-b71f-47e5-89aa-26727c00651f") — the "get_fighter_rankings" function, which fetches Tapology rankings from https://www.tapology.com for a promotion and weight-class slug. Returns the top ranked fighters with rank, name, fighter slug, record when shown, country code, and movement indicators.. It takes promotion_slug (str), weight_class_slug (str). Return the result as structured JSON.