Reviews
List Reviews
Returns a list of all your reviews. Can be searched by User or by Product
GET
/
v2
/
reviews
Header
Query
curl --request GET \
--url https://api.whop.com/v2/reviews
{
"data": [
{
"access_pass": "string",
"created_at": "string",
"description": "string",
"id": "string",
"product": "string",
"stars": "integer",
"title": "string",
"user": "string"
}
],
"pagination": {
"current_page": "integer",
"total_count": "integer",
"total_page": "integer"
}
}
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
Default: "1"integer
The page number to retrieve
per
Default: "10"integer
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
data
object[]
pagination
object
Pagination model
curl --request GET \
--url https://api.whop.com/v2/reviews
{
"data": [
{
"access_pass": "string",
"created_at": "string",
"description": "string",
"id": "string",
"product": "string",
"stars": "integer",
"title": "string",
"user": "string"
}
],
"pagination": {
"current_page": "integer",
"total_count": "integer",
"total_page": "integer"
}
}