get_random_coaster
rcdb.comReturns a randomly selected roller coaster from https://rcdb.com with its park, location, available specifications, and homepage photos. Measurement statistics use the requested imperial or metric unit system.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_random_coaster?
Returns a randomly selected roller coaster from https://rcdb.com with its park, location, available specifications, and homepage photos. Measurement statistics use the requested imperial or metric unit system. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass unit_system and get the result back without maintaining a scraper.
Response
{
"source": "<string>",
"coaster": {
"id": 0,
"url": "<string>",
"name": "<string>",
"park": {
"id": 0,
"url": "<string>",
"name": "<string>"
},
"photos": [
{
"photo_url": "<string>",
"image_urls": [
"<string>"
],
"orientation": "<string>"
}
],
"location": [
{
"id": 0,
"url": "<string>",
"name": "<string>"
}
],
"attributes": {},
"attribute_links": {}
},
"unit_system": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/281a537b-5112-4bbc-bec2-8924cab98c4d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "281a537b-5112-4bbc-bec2-8924cab98c4d",
"variables": {
"unit_system": "imperial"
}
}'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="281a537b-5112-4bbc-bec2-8924cab98c4d") — the "get_random_coaster" function, which returns a randomly selected roller coaster from https://rcdb.com with its park, location, available specifications, and homepage photos. Measurement statistics use the requested imperial or metric unit system.. It takes unit_system (str). Return the result as structured JSON.