---
uuid: 222c8707-67c2-46b6-a65a-68ca4d86928f
date_created: 2025-07-05T08:07:48.824Z
date_updated: 2026-03-11T09:25:34.696Z
outdated: true
end_of_support_date: 2025-08-04
routes: 
  - GET /v1/products/{product_id}/thematics
---

# Migration of the route GET /v1/products/{product\_id}/thematics to GET /v2/products/{product\_id}/thematics

## Context

Upgrade from **GET** - `​/v1/products/{product_id}/thematics` to **GET** -  `​/v2/products/{product_id}/thematics`

⭐  **2 Key benefits :**

* images becomes an objects array
* "included" become "is\_included"

## Impacts

Route to call :

* **GET** -  `/v2/products/{product_id}/thematics`

## Output

```diff
[
  {
    "id": "cruises_theme_golf",
    "children": [
      "TH_SAVOUR"
    ],
    "type": "FOOD_AND_BEVERAGE",
    "is_specific_to_product": true,
    "title": "FOOD AND DRINK",
    "sub_title": "Discover a world of flavours",
    "description": "With dining venues available for each meal, every member of family will find exatly what they want",
-    "images": [ "", "" ],
+    "images": [
+      {
+        "url": "image1.jpg",
+        "type": "MAIN"
+      },
+      {
+        "url": "image2.jpg",
+        "type": "COMMON"
+      },
+      {
+        "url": "image3.jpg",
+        "type": "COMMON"
+      }
    ],
    "items": [
      {
        "title": "Sherry Golf Jerez",
        "sub_title": "Cadix",
        "description": "18 Trous - Par 72 - 6572 m",
        "images": [
          "string"
        ]
      }
    ],
-    "included": true,
+    "is_included": true,
    "provided_services": {
      "is_included": "true",
      "amenities": [
        "string"
      ],
      "drinks": [
        "string"
      ]
    },
    "activity_count": {
      "on_demand": 5,
      "included_activity": 4
    },
    "_links": [
      {
        "rel": "self",
        "method": "GET",
        "href": "https://api.clubmed.com/products",
        "label": "A label"
      }
    ]
  }
]
```
