---
uuid: 44b7f6d8-5a42-46d3-b9b6-9a8f266a81dd
date_created: 2025-11-03T15:00:22.584Z
date_updated: 2026-04-03T17:04:00.621Z
seo_url: retrieve-cruise-stopovers
category: Resort content
tags: 
  - Product Information
routes: 
  - GET /v0/products/{product_id}/stopovers
---

# Retrieve Cruise Stopovers

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

## Flow

false

## 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

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

```bash
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

```json
[
  {
    "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.

**Related route**: [GET https://api.clubmed.com//v0/products/{product\_id}/stopovers](https://api.clubmed.com/doc?search=GET%20%2Fv0%2Fproducts%2F%7Bproduct_id%7D%2Fstopovers)
