Popular Products

Description: Shows trending or frequently purchased products in a specific category.

API Response Structure:

{
  "tabs": ["All", "Best Sellers", "New Arrivals"],
  "products": [
    {
      "title": "Product Name",
      "hasImage": true,
      "price": "$99.99",
      "store": "Retailer Name",
      "rating": {
        "score": 4.5,
        "count": 1234
      },
      "features": [
        "Key feature 1",
        "Key feature 2"
      ],
      "availability": "In Stock",
      "shipping": "Free Shipping"
    }
  ],
  "hasDeals": true,
  "type": "popularProducts"
}

Fields:

  • tabs (array): Category filters

  • products (array): Product listings

    • title (string): Product name

    • hasImage (boolean): Product image

    • price (string): Product price

    • store (string): Retailer name

    • rating (object): Product ratings

    • features (array): Product features

    • availability (string): Stock status

    • shipping (string): Shipping info

  • hasDeals (boolean): Special offers available

  • type (string): Always "popularProducts"