GET
/
v2
/
reviews
curl --request GET \
  --url https://api.whop.com/api/v2/reviews
{
  "pagination": {
    "current_page": 123,
    "total_page": 123,
    "total_count": 123
  },
  "data": [
    {
      "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 ***************************

Query Parameters

page
integer
default:1

The page number to retrieve

per
integer
default:10

The number of resources to return per page. There is a limit of 50 results per page.

user_id
string

The ID of the User that made the Review(s), which will look like user_*************

product_id
string

The ID of the Product to find Reviews on, which will look like prod_************* or pass_*************

access_pass_id
string

Access Pass has been deprecated for Product. Please use product instead and do not use access_pass.

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]

Available options:
product,
user

Response

200 - application/json
List Reviews
pagination
object

Pagination model

data
object[]

Review model