List Reviews
curl --request GET \
--url https://api.whop.com/api/v2/reviews
{
"data": [
{
"access_pass": "<string>",
"created_at": "<string>",
"description": "<string>",
"id": "<string>",
"product": "<string>",
"stars": 123,
"title": "<string>",
"user": "<string>"
}
],
"pagination": {
"current_page": 123,
"total_count": 123,
"total_page": 123
}
}
Headers
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 ***************************
Query Parameters
The page number to retrieve
The number of resources to return per page. There is a limit of 50 results per page.
The ID of the User that made the Review(s), which will look like user_*************
The ID of the Product to find Reviews on, which will look like prod_*************
or pass_*************
Access Pass has been deprecated for Product. Please use product instead and do not use access_pass.
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]
product
, user
Response
Pagination model
Was this page helpful?
curl --request GET \
--url https://api.whop.com/api/v2/reviews
{
"data": [
{
"access_pass": "<string>",
"created_at": "<string>",
"description": "<string>",
"id": "<string>",
"product": "<string>",
"stars": 123,
"title": "<string>",
"user": "<string>"
}
],
"pagination": {
"current_page": 123,
"total_count": 123,
"total_page": 123
}
}