Shopping Pack

Description: Displays product listings with prices, reviews, and merchant information. This feature helps users compare products and prices directly in search results.

API Response Structure:

{
  "title": "Shopping Results",
  "tabs": ["All", "Images", "Videos"],
  "items": [
    {
      "title": "Product Name",
      "price": "$99.99",
      "website": "merchant.com",
      "reviews": {
        "rating": 4.5,
        "count": "1,234"
      }
    }
  ],
  "hasMore": true,
  "type": "instantAnswers",
  "configType": "shoppingPack"
}

Fields:

  • title (string): Title of the shopping section

  • tabs (array): Available view options

  • items (array): List of products

    • title (string): Product name

    • price (string): Product price

    • website (string): Merchant website

    • reviews (object): Product reviews

      • rating (number): Average rating

      • count (string): Number of reviews

  • hasMore (boolean): Indicates if more products are available

  • type (string): Always "instantAnswers"

  • configType (string): Always "shoppingPack"