get_event_fight_card
tapology.comFetches a specific Tapology event page from https://www.tapology.com and returns event metadata plus the full fight card. Includes bout links, fighter slugs, billing position, weight class, and community prediction breakdowns.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_event_fight_card?
Fetches a specific Tapology event page from https://www.tapology.com and returns event metadata plus the full fight card. Includes bout links, fighter slugs, billing position, weight class, and community prediction breakdowns. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_slug and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"bouts": [
{
"bout_url": "<string>",
"fighters": [
{
"name": "<string>",
"fighter_slug": "<string>"
}
],
"bout_slug": "<string>",
"weight_class": "<string>",
"billing_position": "<string>",
"community_prediction": {
"fighters": [
{
"fighter_name": "<string>",
"fighter_slug": "<string>",
"ko_tko_percentage": 0,
"overall_percentage": 0,
"decision_percentage": 0,
"submission_percentage": 0
}
],
"predicted_winner_name": "<string>",
"predicted_winner_slug": "<string>"
}
}
],
"venue": "<string>",
"location": "<string>",
"event_url": "<string>",
"promotion": "<string>",
"bout_count": 0,
"event_name": "<string>",
"event_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/f28aa505-70cd-4c90-9d1e-6ff3d4416e87/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f28aa505-70cd-4c90-9d1e-6ff3d4416e87",
"variables": {
"event_slug": "144704-ufc-fight-night"
}
}'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="f28aa505-70cd-4c90-9d1e-6ff3d4416e87") — the "get_event_fight_card" function, which fetches a specific Tapology event page from https://www.tapology.com and returns event metadata plus the full fight card. Includes bout links, fighter slugs, billing position, weight class, and community prediction breakdowns.. It takes event_slug (str). Return the result as structured JSON.