Retrieve Cruise Stopovers

  • Product Information
  • Resort content
  • 1 route
How do I retrieve the stopovers of a cruise?

Retrieves the list of stopovers and associated tours for a specific cruise.

Overview

Use this scenario to retrieve the stopovers of a cruise together with the circuits or complementary information available for each part of the itinerary. It can enrich a cruise page, an itinerary detail, or a journey comparison experience.

Prerequisites

  • Have a valid cruise identifier.
  • Send x-api-key and, when relevant, accept-language.
1

Get Stopovers

Mandatory

This route returns the list of cruise stopovers together with the useful information for each day.

Prerequisites

Use the cruise product identifier. The response is localized according to the requested language.

Calling CURL

curl -X GET \
  -H "x-api-key: $API_KEY" \
  -H "accept-language: en-US" \
  "https://api.clubmed.com/v0/products/{product_id}/stopovers"

Example answer

[
  {
    "id": "stopover-1",
    "title": "Barcelona",
    "description": "Historic city stop with shore excursion options",
    "itinerary_day": 3,
    "date": "2026-07-09",
    "arrival_time": "08:00:00",
    "departure_time": "18:00:00",
    "hotels": [],
    "additional_activities_labels": [
      "Walking tour"
    ],
    "images": [
      "https://example.com/stopover.jpg"
    ]
  }
]

info: You can use this payload to enrich a cruise page with stopovers, timings, and associated activities.


Response codes

  • 200 OK: the stopovers are returned.
  • 400 Bad Request: invalid parameters.
  • 401 Unauthorized: invalid authentication when required.
  • 404 Not Found: unknown product.
GET/v0/products/{product_id}/stopovers
See more