Marketplace
No threads yet
Live

search_coaster_park_suggestions

rcdb.com

Performs quick autocomplete lookups on https://rcdb.com and returns top matching roller coaster or park results with location and link path.

Parameters2
Runs10
Updated8d ago
Operational10 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_coaster_park_suggestions?

Performs quick autocomplete lookups on https://rcdb.com and returns top matching roller coaster or park results with location and link path. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.

Response

{
  "limit": 0,
  "query": "<string>",
  "source": "<string>",
  "results": [
    {
      "name": "<string>",
      "title": "<string>",
      "link_url": "<string>",
      "location": "<string>",
      "link_path": "<string>",
      "record_id": 0
    }
  ],
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/082a3dcb-236e-4620-ac4c-b4ecbf17502a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "082a3dcb-236e-4620-ac4c-b4ecbf17502a",
    "variables": {
        "query": "fury",
        "limit": 8
    }
}'

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="082a3dcb-236e-4620-ac4c-b4ecbf17502a") — the "search_coaster_park_suggestions" function, which performs quick autocomplete lookups on https://rcdb.com and returns top matching roller coaster or park results with location and link path..

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