get_upcoming_mma_events
tapology.comGet upcoming MMA and combat sports events from the Tapology FightCenter at https://www.tapology.com, including schedules, locations, links, sport and region details, featured bouts, broadcasts, and promotion logos. Filters by sport type and promotion group and follows FightCenter result pages up to the requested limit.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_upcoming_mma_events?
Get upcoming MMA and combat sports events from the Tapology FightCenter at https://www.tapology.com, including schedules, locations, links, sport and region details, featured bouts, broadcasts, and promotion logos. Filters by sport type and promotion group and follows FightCenter result pages up to the requested limit. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sport_type, promotion_group, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"events": [
{
"url": "<string>",
"date": "<string>",
"time": "<string>",
"region": "<string>",
"location": "<string>",
"broadcast": "<string>",
"date_time": "<string>",
"event_name": "<string>",
"sport_type": "<string>",
"featured_bout": "<string>",
"promotion_logo": "<string>",
"featured_bout_title": "<string>",
"featured_bout_weight": "<string>"
}
],
"has_more": true,
"pages_fetched": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/58176f90-1ee0-44f5-be00-e2c03ee60914/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "58176f90-1ee0-44f5-be00-e2c03ee60914",
"variables": {
"sport_type": "all",
"promotion_group": "all",
"limit": 25
}
}'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="58176f90-1ee0-44f5-be00-e2c03ee60914") — the "get_upcoming_mma_events" function, which get upcoming MMA and combat sports events from the Tapology FightCenter at https://www.tapology.com, including schedules, locations, links, sport and region details, featured bouts, broadcasts, and promotion logos. Filters by sport type and promotion group and follows FightCenter result pages up to the requested limit.. It takes sport_type (str), promotion_group (str), limit (int). Return the result as structured JSON.