Discover/RCDB API
live

RCDB APIrcdb.com

Access roller coaster specs, park details, photo galleries, and search across the RCDB database. 6 endpoints covering coaster stats, status, and location data.

Endpoint health
verified 6d ago
quick_search
get_random_coaster
search_coasters
get_coaster_details
get_park_details
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the RCDB API?

The RCDB API provides structured access to roller coaster and amusement park data across 6 endpoints, pulling from the world's largest roller coaster database at rcdb.com. The get_coaster_details endpoint alone returns over a dozen fields including track dimensions, train configuration, operating status, and status date. Whether you need to look up a specific coaster by ID, browse a park's full ride inventory, or pull photo gallery metadata, the API covers the core data rcdb.com publishes.

Try it

No input parameters required.

api.parse.bot/scraper/8a18aea2-34a6-477e-827d-dd8792ab477c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8a18aea2-34a6-477e-827d-dd8792ab477c/get_random_coaster' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace rcdb-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.rcdb_roller_coaster_database_api import RCDB, Coaster, CoasterSummary, Park, ParkCoaster, Gallery, QuickResult

rcdb = RCDB()

# Search for coasters with "Steel" in the name
for coaster in rcdb.coasters.search(query="Steel"):
    print(coaster.name, coaster.park, coaster.opened)

# Get full details for a specific coaster by constructing from ID
details = rcdb.coaster(id="15411").pictures.gallery()
for pic in details.pictures:
    print(pic.name, pic.width, pic.height)

# Look up a park by ID and explore its coasters
park = rcdb.parks.get(park_id="4529")
print(park.name, park.location)

# Quick autocomplete search
for result in rcdb.coasters.quick_search(query="kingda"):
    print(result.t, result.s, result.l)

# Get a random coaster from the homepage
random_coaster = rcdb.coasters.random()
print(random_coaster.name, random_coaster.park, random_coaster.status)
All endpoints · 6 totalmissing one? ·

Returns details of a randomly selected roller coaster from the rcdb.com homepage. Each call returns a different coaster with varying fields depending on available data. Fields like speed, height, length, layout, and manufacturer appear only when the site provides them for that coaster.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "id": "string, numeric coaster ID",
    "name": "string, coaster name",
    "park": "string, name of the park",
    "status": "string, operating status",
    "park_id": "string, numeric park ID",
    "location": "string, comma-separated location"
  },
  "sample": {
    "data": {
      "id": "1576",
      "name": "Souris Mécaniques",
      "park": "Jardin d'Acclimatation",
      "speed": "18.6 mph",
      "height": "23 ft",
      "layout": "Wild Mouse",
      "length": "711.9 ft",
      "status": "Operating",
      "park_id": "5113",
      "location": "Paris, Île-de-France, France",
      "manufacturer": "Reverchon",
      "roller coaster": "Souris Mécaniques"
    },
    "status": "success"
  }
}

About the RCDB API

Coaster and Park Detail Endpoints

The get_coaster_details endpoint accepts a numeric coaster_id and returns a structured object that includes the coaster's name, park, location, status, status_date, general_info array, and a stats object segmented into sections like Tracks, Trains, and Details. These stat sections contain key-value pairs for measurements such as height, speed, length, inversions, and design type — the same figures listed in the statistics table on rcdb.com. The get_park_details endpoint takes a park_id and returns the park's name, location, and a coasters object where each key is an operating status (e.g. "Operating", "Removed") and each value is an array of coaster objects with name and id.

Search Endpoints

Two search endpoints handle different lookup patterns. search_coasters accepts an optional query string and returns a flat list of all matching coasters with fields name, id, park, park_id, and opened. Omitting the query returns the full coaster list with a total count. quick_search is designed for autocomplete scenarios: it takes a required query and returns a small result set where each item has a title (t), subtitle or location (s), and a relative link path (l). A sequence integer is also returned, which is useful for ordering out-of-sequence async responses.

Photo Gallery and Random Coaster

get_coaster_pictures returns the full photo gallery for a coaster by coaster_id. The response includes a pictures array where each item carries an id, url, name, per-picture dimensions, and multiple size variants. Sprite sheet metadata (sprite_url, cols, width, sizes) is also returned for efficient thumbnail rendering. The get_random_coaster endpoint takes no inputs and returns a randomly selected coaster's basic details — id, name, park, park_id, status, and location — useful for discovery features or sampling the dataset.

Reliability & maintenanceVerified

The RCDB API is a managed, monitored endpoint for rcdb.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rcdb.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official rcdb.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a coaster comparison tool using stats fields like height, speed, and inversions from get_coaster_details.
  • Populate a park directory with ride inventory grouped by status using get_park_details and its coasters object.
  • Implement a coaster autocomplete search bar using quick_search with the t, s, and l response fields.
  • Display photo galleries for individual coasters by feeding pictures[].url and size variants from get_coaster_pictures.
  • Generate a 'coaster of the day' feature using get_random_coaster to surface ride names, parks, and locations.
  • Export a filtered dataset of coasters with opening years using the opened field from search_coasters.
  • Track historical operating status changes by reading status and status_date from get_coaster_details.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does rcdb.com have an official developer API?+
No. rcdb.com does not publish an official developer API or publicly documented data access layer. This Parse API provides structured programmatic access to the data rcdb.com makes available on its public pages.
What does `get_coaster_details` return in the `stats` object?+
The stats field is a nested object with section keys such as Tracks, Trains, and Details. Each section contains key-value pairs like height, drop, speed, length, duration, capacity, or number of inversions — depending on what rcdb.com lists for that specific coaster. Not every coaster has every stat populated; fields vary based on available data.
Does `search_coasters` support filtering by country, coaster type, or manufacturer?+
Not currently. search_coasters filters only by a keyword query matched against coaster names, and returns name, id, park, park_id, and opened fields. You can fork this API on Parse and revise it to add filter parameters for attributes like location or coaster type.
Are user reviews or visitor ratings for coasters available?+
Not currently. The API covers coaster specifications, park inventories, photo galleries, and search results, but does not expose any user-submitted ratings or reviews. You can fork this API on Parse and revise it to add an endpoint targeting that data.
How does `quick_search` differ from `search_coasters` for finding a coaster?+
quick_search is optimized for fast, autocomplete-style lookups and returns a small result set with title, subtitle, and a link path per result — it also covers parks, not just coasters. search_coasters returns a more complete result set with park_id and opened fields, and omitting the query returns all coasters with a total count. Use quick_search for type-ahead UI and search_coasters for full dataset queries.
Page content last updated . Spec covers 6 endpoints from rcdb.com.
Related APIs in EntertainmentSee all →
themeparks.com API
Plan your theme park visits with real-time wait times, operating schedules, attraction details, show information, and dining options across parks worldwide. Search for specific parks, explore attractions and restaurants, view park maps, and check schedules by month to optimize your experience.
queue-times.com API
Monitor real-time wait times, crowd levels, and historical data across 130+ theme parks worldwide to plan your visits and avoid peak hours. Get daily statistics and predictions to make informed decisions about when and where to experience attractions with minimal wait times.
royalcaribbean.com API
Search and compare Royal Caribbean cruises by destination, ship, itinerary, and price. Access detailed sailing information including port schedules, voyage durations, and fares across all global routes and departure dates.
thecrag.com API
Search and explore outdoor climbing areas, routes, and photos with access to detailed route information and geographic hierarchy. Build climbing apps, trip planners, or guides by pulling real-time climbing data organized by location and route details.
amtrak.com API
Search for Amtrak trains across stations, compare fares, and discover discounts to plan your rail journey with current pricing and availability. Get detailed train information, autocomplete station names, and find the cheapest routes for your travel dates.
shoreexcursionsgroup.com API
Search and browse shore excursions from ports worldwide, comparing pricing, features, highlights, and customer reviews all in one place. Find the perfect activity for your cruise stop by filtering destinations and ports, then dive into detailed excursion information to plan your next adventure.
thecocktaildb.com API
Discover and explore thousands of cocktail recipes by searching by name, ingredient, category, or glass type, plus get random drink suggestions and detailed information about cocktail components. Filter drinks by whether they're alcoholic or non-alcoholic, and browse complete lists of available categories, glasses, and ingredients.
rateyourmusic.com API
Search for albums, artists, and genres to retrieve detailed information including release dates, ratings, and chart rankings from Rate Your Music. Browse music charts and explore genre-specific data to discover trends across the catalog.