Products
List Products
Returns a collection of Products, based on the supplied filters.
GET
/v2/products
Authorization
curl --request GET \
--url https://api.whop.com/v2/products
{
"data": [
{
"created_at": "integer",
"experiences": [
"array"
],
"id": "string",
"name": "string",
"plans": [
"array"
],
"visibility": "visible"
}
],
"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.
visibility
string
The visibility of the Product
expand
array
Whether or not to expand the Experiences and Plans on the returned Product(s). Pass an array with each object(s) you want to expand, e.g. [experiences, plans]
Response
data
array
pagination
object
Pagination model
curl --request GET \
--url https://api.whop.com/v2/products
{
"data": [
{
"created_at": "integer",
"experiences": [
"array"
],
"id": "string",
"name": "string",
"plans": [
"array"
],
"visibility": "visible"
}
],
"pagination": {
"current_page": "integer",
"total_count": "integer",
"total_page": "integer"
}
}