search_coasters
rcdb.comSearches roller coasters by name keyword on https://rcdb.com and returns every matching record in one response with the total count, park, type, design, status, opening information, and photo availability. With no query, it returns all roller coasters in the database.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_coasters?
Searches roller coasters by name keyword on https://rcdb.com and returns every matching record in one response with the total count, park, type, design, status, opening information, and photo availability. With no query, it returns all roller coasters in the database. 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
{
"query": "<string>",
"source": "<string>",
"results": [
{
"id": 0,
"url": "<string>",
"name": "<string>",
"park": {
"id": 0,
"url": "<string>",
"name": "<string>"
},
"attributes": {},
"has_photos": true,
"attribute_links": {}
}
],
"total_count": 0,
"results_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/63672d20-c3b6-42a5-bf9f-4a058079ba9b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "63672d20-c3b6-42a5-bf9f-4a058079ba9b",
"variables": {
"query": ""
}
}'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="63672d20-c3b6-42a5-bf9f-4a058079ba9b") — the "search_coasters" function, which searches roller coasters by name keyword on https://rcdb.com and returns every matching record in one response with the total count, park, type, design, status, opening information, and photo availability. With no query, it returns all roller coasters in the database.. It takes query (str). Return the result as structured JSON.