disneycruise.disney.go.com APIdisneycruise.disney.go.com ↗
Access Disney Cruise Line Port Adventures across all destinations. Get excursion details, prices, duration, age restrictions, and port listings via 3 endpoints.
curl -X GET 'https://api.parse.bot/scraper/6a59f532-990b-4d09-996f-a021bbe8a568/list_excursions?port=cozumel&query=snorkel&destination=caribbean' \ -H 'X-API-Key: $PARSE_API_KEY'
List shore excursions (Port Adventures) with optional filtering by destination, port, or keyword. Returns all excursions matching the criteria with name, code, port, prices, experience types, activity level, and more.
| Param | Type | Description |
|---|---|---|
| port | string | Filter by port name (partial match, case-insensitive). |
| query | string | Search keyword to filter excursions by name, code, port, or experience type (case-insensitive). |
| destination | string | Destination slug to filter by. Accepted values: all, alaska, bahamas, bermuda, pacific-coast, caribbean, europe, hawaii, mexico, panama-canal, transatlantic, canada-new-england, south-pacific, new-zealand-australia. |
{
"type": "object",
"fields": {
"total": "integer count of matching excursions",
"excursions": "array of excursion summary objects with id, name, code, destination, port, url, prices, price_display, experience_types, activity_level, good_for, price_range, accessibility, image_url, is_gratuity_charged",
"ports_found": "array of port names with matching excursions",
"destinations_queried": "array of destination slugs that were searched"
},
"sample": {
"data": {
"total": 69,
"excursions": [
{
"id": "412359275",
"url": "https://disneycruise.disney.go.com/port-adventures/cozumel-mexico-adventure-park-zipline-and-snorkeling/",
"code": "CZ115",
"name": "Adventure Park Zipline and Snorkeling (CZ115)",
"port": "Cozumel Mexico",
"prices": [
"$94.00 (ages 10 and up)",
"$59.00 (ages 6 to 9)"
],
"good_for": [
"Kids",
"Tweens",
"Teens"
],
"image_url": "https://cdn1.parksmedia.wdprapps.disney.com/resize/mwImage/1/630/354/75/vision-dam/digital/parks-platform/parks-global-assets/disney-cruise-line/port-adventure/central-america/cz115/Hero_DJI_0173-16x9.jpg?2025-03-28T20:49:07+00:00",
"destination": "caribbean",
"price_range": "50 To 99",
"accessibility": [],
"price_display": "$94.00* (ages 10 and up), $59.00* (ages 6 to 9)",
"activity_level": [
"Active",
"Moderate"
],
"experience_types": [
"Active",
"Splashtacular"
],
"is_gratuity_charged": false
}
],
"ports_found": [
"Aruba",
"Basseterre St Kitts",
"Bridgetown Barbados"
],
"destinations_queried": [
"caribbean"
]
},
"status": "success"
}
}About the disneycruise.disney.go.com API
This API provides structured access to Disney Cruise Line shore excursions (Port Adventures) across all sailing destinations through 3 endpoints. The list_excursions endpoint returns excursion summaries including adult, child, and infant prices, activity level, experience types, and port assignments. The get_excursion_details endpoint adds duration, age group suitability, full description, and hero image URL for any individual excursion.
Endpoints and What They Return
The API exposes three endpoints covering excursions and ports. list_excursions accepts optional destination, port, and query parameters and returns a filtered array of excursion objects, each including id, name, code, destination, port, url, prices (adult/child/infant), price_display, experience_types, and activity_level. The response also includes total, ports_found, and destinations_queried for navigational context. Destination slugs accepted include alaska, bahamas, bermuda, pacific-coast, caribbean, and europe.
Excursion Detail
get_excursion_details takes a numeric excursion_id sourced from list_excursions results and returns the full record: duration, good_for (age group labels), description, image_url, code, type, and the full prices object. This is the right endpoint when you need complete excursion data rather than summary fields for browsing.
Ports and Destinations
list_ports returns the full port roster grouped by destination. Each port object includes id, name, and a destinations array. The response includes all_ports (deduplicated across destinations), total_ports, and a ports_by_destination map. Filtering by the optional destination parameter narrows results to a single sailing region. This endpoint is useful for building port pickers or validating port names before passing them to list_excursions.
- Build a shore excursion comparison tool that shows adult and child prices side-by-side across multiple ports on a given itinerary.
- Filter Port Adventures by activity level and age group suitability to recommend appropriate excursions for families with young children.
- Generate a destination guide listing all ports and available excursion counts for each Caribbean or Alaskan sailing.
- Aggregate excursion experience types across a cruise itinerary to identify activity category gaps or overlaps.
- Display excursion duration and know-before-you-go information in a pre-cruise planning app so guests can make decisions before boarding.
- Build a keyword search interface over Disney Cruise excursions using the
queryparameter across name, code, port, and experience type fields. - Monitor excursion pricing across destinations over time by periodically calling
list_excursionsand storing thepricesfields.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Disney Cruise Line offer an official developer API for shore excursion data?+
How does filtering work in list_excursions, and can I combine multiple filters?+
destination, port, and query parameters can be used individually or together. destination accepts a predefined slug such as alaska or caribbean. port does a case-insensitive partial match against the port name field. query matches against excursion name, code, port, and experience type. When multiple parameters are supplied, results must satisfy all active filters simultaneously.Does get_excursion_details return real-time availability or booking status for an excursion?+
name, duration, prices, good_for, description, image_url, code, and type. Real-time inventory and booking capacity are not part of the response. You can fork this API on Parse and revise it to add an availability-checking endpoint if that data becomes accessible.