Related Sets

Description: Shows groups of related items or products that are commonly purchased or viewed together.

API Response Structure:

{
  "title": "Related Products",
  "description": "Frequently bought together",
  "compareableProducts": [
    {
      "title": "Product Name",
      "hasImage": true,
      "price": "$99.99",
      "reviewCount": "736",
      "descriptionList": [
        {
          "title": "Feature",
          "description": "Feature description"
        }
      ],
      "compatibility": {
        "worksWidth": ["Model A", "Model B"],
        "requirements": ["Requirement 1", "Requirement 2"]
      }
    }
  ],
  "type": "relatedSets"
}

Fields:

  • title (string): Section heading

  • description (string): Set description

  • compareableProducts (array): Related products

    • title (string): Product name

    • hasImage (boolean): Product image

    • price (string): Product price

    • reviewCount (string): Number of reviews

    • descriptionList (array): Product features

    • compatibility (object): Compatibility info

  • type (string): Always "relatedSets"