Live
get_fighter_profile
tapology.comReturns full fighter profiles from https://www.tapology.com with biography, career stats, professional and amateur records, weigh-ins, and recent news.
Parameters5
Runs6
Updated3d 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_fighter_profile?
Returns full fighter profiles from https://www.tapology.com with biography, career stats, professional and amateur records, weigh-ins, and recent news. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass fighter_slug, result_filter, method_filter, date_from, date_to and get the result back without maintaining a scraper.
Response
{
"counts": {},
"profile": {},
"recent_news": [
{}
],
"fight_record": {},
"applied_filters": {},
"career_statistics": {},
"weight_cut_history": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/194ceb30-565b-4ecc-9a9b-64ee7d477c7a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "194ceb30-565b-4ecc-9a9b-64ee7d477c7a",
"variables": {
"fighter_slug": "40148-islam-makhachev",
"result_filter": "",
"method_filter": "",
"date_from": "",
"date_to": ""
}
}'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="194ceb30-565b-4ecc-9a9b-64ee7d477c7a") — the "get_fighter_profile" function, which returns full fighter profiles from https://www.tapology.com with biography, career stats, professional and amateur records, weigh-ins, and recent news.. It takes fighter_slug (str), result_filter (str), method_filter (str), date_from (str), date_to (str). Return the result as structured JSON.