GET
https://api.whop.com/api
/
v2
/
reviews
/
{id}
curl --request GET \
  --url https://api.whop.com/api/v2/reviews/{id}
{
  "id": "<string>",
  "user": "<string>",
  "product": "<string>",
  "stars": 123,
  "title": "<string>",
  "description": "<string>",
  "created_at": "<string>",
  "access_pass": "<string>"
}

Headers

Authorization
string

Your API key, which can be found on the Whop Business Dashboard. You must prepend your key with the word 'Bearer', which will look like Bearer ***************************

Path Parameters

id
string
required

The ID of the Review, which will look like rev_*************

Query Parameters

expand
enum<string>[]

Whether or not to expand the User or Product on the returned Review(s). Pass an array with each object(s) you want to expand, e.g. [product, user]

Response

200 - application/json

Retrieve a review

Review model