Marketplace
No threads yet
Live

search_venue_shows

data.fei.org

Searches FEI calendar shows at a specific venue on https://data.fei.org and returns scheduled show records with linked FEI event details. Returns an empty shows array when no scheduled shows match the venue or page.

Parameters5
Runs8
Updated8d ago
Operational8 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_venue_shows?

Searches FEI calendar shows at a specific venue on https://data.fei.org and returns scheduled show records with linked FEI event details. Returns an empty shows array when no scheduled shows match the venue or page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass venue, date_from, date_to, page, timeout_seconds 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>"
    }
  ],
  "venue": "<string>",
  "page_size": 0,
  "total_count": 0,
  "total_pages": 0,
  "query_date_to": "<string>",
  "query_date_from": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4f197499-bf31-424f-bf8b-6423d4f94663/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4f197499-bf31-424f-bf8b-6423d4f94663",
    "variables": {
        "venue": "Lier",
        "date_from": "",
        "date_to": "",
        "page": 1,
        "timeout_seconds": 45
    }
}'

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="4f197499-bf31-424f-bf8b-6423d4f94663") — the "search_venue_shows" function, which searches FEI calendar shows at a specific venue on https://data.fei.org and returns scheduled show records with linked FEI event details. Returns an empty shows array when no scheduled shows match the venue or page..

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