Reviews
BIAB's review system collects customer ratings and testimonials. The SDK exposes a read-only public reviews wall — no per-org setup needed.
const reviews = await client.reviews.list()
// → [{ id, author, rating, title, content, createdAt }, ...]
The result is a flat list of approved, published reviews ordered by date (newest first). Each entry includes the reviewer's name, star rating (1-5), optional title and body text, and the submission timestamp.
Use the data to render a testimonials section, a review carousel, or a standalone reviews page on your site.