Marketplace
No threads yet
Live

search_calendar_shows

data.fei.org

Searches FEI calendar shows and events on https://data.fei.org by date range and venue. Returns paginated show records with event details and event IDs for each show.

Parameters4
Runs11
Updated8d ago
Operational11 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_calendar_shows?

Searches FEI calendar shows and events on https://data.fei.org by date range and venue. Returns paginated show records with event details and event IDs for each show. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date_from, date_to, venue, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "shows": [
    {
      "Events": [
        {
          "Event_id": "<string>",
          "Event_url": "<string>",
          "Event_name": "<string>"
        }
      ],
      "NF_code": "<string>",
      "Show_id": "<string>",
      "End_date": "<string>",
      "Show_url": "<string>",
      "Show_name": "<string>",
      "Events_ids": [
        "<string>"
      ],
      "Start_date": "<string>",
      "Events_text": "<string>"
    }
  ],
  "page_size": 0,
  "active_view": "<string>",
  "query_venue": "<string>",
  "total_count": 0,
  "total_pages": 0,
  "query_date_to": "<string>",
  "query_date_from": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a6c10b88-acd6-4cd9-9ee2-357ec701eb4f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a6c10b88-acd6-4cd9-9ee2-357ec701eb4f",
    "variables": {
        "date_from": "",
        "date_to": "",
        "venue": "",
        "page": 1
    }
}'

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="a6c10b88-acd6-4cd9-9ee2-357ec701eb4f") — the "search_calendar_shows" function, which searches FEI calendar shows and events on https://data.fei.org by date range and venue. Returns paginated show records with event details and event IDs for each show..

It takes date_from (str), date_to (str), venue (str), page (int). Return the result as structured JSON.