Marketplace
No threads yet
Live

get_coaster_photo_gallery

rcdb.com

Returns roller coaster photo gallery data from https://rcdb.com by numeric ID, including sprite metadata, copyright details, dimensions, and every image size URL.

Parameters1
Runs8
Updated3d ago
Degraded8 runs · 87.5% 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 get_coaster_photo_gallery?

Returns roller coaster photo gallery data from https://rcdb.com by numeric ID, including sprite metadata, copyright details, dimensions, and every image size URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass coaster_id and get the result back without maintaining a scraper.

Response

{
  "park": {
    "id": 0,
    "url": "<string>",
    "name": "<string>",
    "path": "<string>"
  },
  "source": "<string>",
  "sprite": {
    "url": "<string>",
    "path": "<string>",
    "width": 0,
    "columns": 0,
    "size_options": [
      {
        "width": 0,
        "height": 0
      }
    ],
    "copyright_symbol": "<string>"
  },
  "pictures": [
    {
      "id": 0,
      "url": "<string>",
      "name": "<string>",
      "path": "<string>",
      "sizes": [
        {
          "url": "<string>",
          "path": "<string>",
          "width": 0,
          "height": 0
        }
      ],
      "width": 0,
      "height": 0,
      "offset": 0,
      "copy_id": 0,
      "copy_date": "<string>",
      "copy_name": "<string>",
      "copy_profile_url": "<string>",
      "copy_profile_path": "<string>"
    }
  ],
  "coaster_id": 0,
  "gallery_url": "<string>",
  "coaster_name": "<string>",
  "gallery_path": "<string>",
  "picture_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ac5bde75-c99b-4780-a694-89da0c92e723/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ac5bde75-c99b-4780-a694-89da0c92e723",
    "variables": {
        "coaster_id": 12273
    }
}'

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="ac5bde75-c99b-4780-a694-89da0c92e723") — the "get_coaster_photo_gallery" function, which returns roller coaster photo gallery data from https://rcdb.com by numeric ID, including sprite metadata, copyright details, dimensions, and every image size URL..

It takes coaster_id (int). Return the result as structured JSON.