Recommendations

Description: Provides personalized suggestions and recommendations based on the search query.

API Response Structure:

{
  "items": [
    {
      "title": "Recommended Item",
      "hasImage": true,
      "price": {
        "current": "$99.99",
        "original": "$129.99",
        "discount": "23% off"
      },
      "rating": {
        "score": 4.5,
        "count": "1,234"
      },
      "url": "https://example.com/item",
      "hasLogo": true,
      "website": "https://merchant.com",
      "textTitle": "Product Description",
      "textDesc": "Detailed product information...",
      "newsDesc": "Latest updates about the product",
      "hasNewsDescLogo": true,
      "newsWebsiteTitle": "News Source",
      "newsWebsiteUrl": "https://news.com",
      "productInformations": [
        {
          "key": "Feature",
          "value": "Description"
        }
      ],
      "productFeatures": ["Feature 1", "Feature 2"]
    }
  ],
  "type": "recommendations"
}

Fields:

  • items (array): Recommended items

    • title (string): Item title

    • hasImage (boolean): Has product image

    • price (object): Pricing information

    • rating (object): User ratings

    • url (string): Product URL

    • hasLogo (boolean): Merchant logo

    • website (string): Merchant website

    • textTitle (string): Description title

    • textDesc (string): Full description

    • newsDesc (string): News updates

    • productInformations (array): Features

    • productFeatures (array): Key features

  • type (string): Always "recommendations"