Skip to content
Bakhtarian edited this page May 14, 2026 · 1 revision

Review

A review is customer feedback left on a Whop product or company — typically a rating and written comment shown on the product's listing. This resource is read-only.

SDK access

$client->reviews // Matchable\Whop\Resource\ReviewResource

Endpoints

list(array $query = []): array

HTTP GET reviews
Does Lists reviews.
Parameters $query — optional filters / pagination.
Returns array

get(string $id): array

HTTP GET reviews/{id}
Does Retrieves a single review by ID.
Parameters $id — the review ID.
Returns array

Example

$reviews = $client->reviews->list(['product_id' => 'prod_...']);

$review = $client->reviews->get('review_...');

Reference

Official Whop documentation: https://docs.whop.com

Clone this wiki locally