Embed Code Generator

Copy a starter snippet and replace placeholders with your Reviewlee IDs.

Script embed

Fastest option for static sites.

<div id="reviewlee-widget" data-org="YOUR_ORG_ID" data-form="YOUR_FORM_ID"></div>
<script src="https://cdn.reviewlee.com/widget.js" async></script>

React embed

Use the component in your product UI.

import { ReviewWidget } from '@reviewlee/react';

export function Testimonials() {
  return <ReviewWidget orgId="YOUR_ORG_ID" formId="YOUR_FORM_ID" />;
}

Iframe embed

Simple fallback when script policies are strict.

<iframe
  src="https://app.reviewlee.com/embed/YOUR_EMBED_ID"
  width="100%"
  height="640"
  loading="lazy"
  title="Customer reviews"
></iframe>

Need dynamic layouts and filters?

Use Reviewlee API and webhooks to build custom review experiences end-to-end.