1. Reviews
WiserReview
  • Introduction
  • API Refrences
    • Authentication
      • Generate Token
    • Reviews
      • Get review list
        GET
      • Get reviews by product
        GET
      • Create review
        POST
      • LLM discoverability review HTML
        GET
    • Widgets
      • Star rating
      • Product Review
    • Product
      • Sync Product
  • Guides
    • Widgets
      • Plugins
      • Custom site
    • Webhooks
      • Introduction
    • Rich Snippet
      • Product Rich Snippet
    • Custom Ecommerce
      • API Verification Flow
  1. Reviews

LLM discoverability review HTML

GET
https://rs.wiserreview.com/api/llmRvwHTML
Returns a product's review content in a form AI crawlers and search engines can read without running JavaScript.
AI platforms such as ChatGPT and Gemini do not execute our widget JS, so on most storefronts they see no reviews at all. Call this endpoint from your server while rendering a product page, and inject the returned strings into the page's initial HTML.
Shopify (theme app extension) and WooCommerce (plugin) already do this on their own. This endpoint is for every other platform: BigCommerce, Wix, headless and custom storefronts.
Notes:
Cache the response on your side and refresh it when reviews change. Do not call it on every page view.
Only this product's own reviews are returned. Fallback reviews from other products are never included, so the rich snippet always matches the page.
html is a single line string. It is visually hidden for shoppers but present in the page source for crawlers.
If the product has no published review, jsonld comes back empty.

Request

Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://rs.wiserreview.com/api/llmRvwHTML?wsid=17yyypjlshyrw1j&pid=9577234628920&ihtml=true&ijsonld=true'
Response Response Example
{"status": 200, "pid": "9577234628920", "dataCount": {"prtng": 24, "avgrtng": 4.7}, "html": "<div class=\"wiserreview_66e2\" data-id=\"66e2\" data-block-handle=\"main\"> <style> .wiserreview_66e2 { position: absolute; width: 1px; height: 1px; overflow: hidden; } </style> <h2>Customer Reviews</h2><div class=\"review-item\"> <div class=\"review-product\"><a href=\"https://store.com/products/blue-shoe\" class=\"review-product-link\">Blue Running Shoe</a></div> <div class=\"review-author\">Emma R.</div> <div class=\"review-rating\">Rating: 5/5</div> <div class=\"review-title\">Very comfortable</div> <div class=\"review-body\"> True to size and light. Wore them on a 10km run with no rubbing. </div> <div class=\"review-date\">2026-08-21</div> </div> </div>", "jsonld": "<script id=\"WiserReviewSchemaJson\" type=\"application/ld+json\">{\"@context\":\"https://schema.org\",\"@type\":\"Product\",\"aggregateRating\":{\"@type\":\"AggregateRating\",\"ratingValue\":4.7,\"reviewCount\":24,\"bestRating\":\"5\",\"worstRating\":\"1\"},\"@id\":\"https://store.com/products/blue-shoe\",\"url\":\"https://store.com/products/blue-shoe\",\"name\":\"Blue Running Shoe\",\"review\":[{\"@type\":\"Review\",\"author\":{\"@type\":\"Person\",\"name\":\"Emma R.\"},\"reviewRating\":{\"@type\":\"Rating\",\"ratingValue\":5,\"bestRating\":\"5\",\"worstRating\":\"1\"},\"publisher\":{\"@type\":\"Organization\",\"name\":\"WiserReview\"},\"reviewBody\":\"True to size and light. Wore them on a 10km run with no rubbing.\",\"datePublished\":\"2026-08-21\"}]}</script>"}
Modified at 2026-09-16 06:52:49
Previous
Create review
Next
Star rating
Built with