Marketplace
No threads yet
Live

search_events

tapology.com

Searches https://www.tapology.com for events by name or keyword and returns names, slugs, dates, bout counts, and direct event links.

Parameters1
Runs7
Updated3d ago
Operational7 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 search_events?

Searches https://www.tapology.com for events by name or keyword and returns names, slugs, dates, bout counts, and direct event links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "events": [
    {
      "date": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "event_url": "<string>",
      "bout_count": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b7bec6a0-8901-4a4c-b677-2ace3a91ce82/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b7bec6a0-8901-4a4c-b677-2ace3a91ce82",
    "variables": {
        "query": "UFC 330"
    }
}'

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="b7bec6a0-8901-4a4c-b677-2ace3a91ce82") — the "search_events" function, which searches https://www.tapology.com for events by name or keyword and returns names, slugs, dates, bout counts, and direct event links..

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