Products
Retrieve a Product
Returns a product
GET
/
v5
/
me
/
products
/
{id}
Authorization
Path
curl --request GET \
--url https://api.whop.com/api/v5/me/products/{id} \
--header 'Authorization: <authorization>'
{
"company_id": "<string>",
"created_at": 123,
"description": "<string>",
"id": "<string>",
"name": "<string>",
"page_id": "<string>",
"visibility": "visible"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
id
string
requiredThe ID of the Product, which will look like prod_*************
Response
200 - application/json
company_id
string
requiredThe ID of the company, which will look like biz_*************
created_at
number
requiredThe date the product was created
description
string
The description of the product
id
string
requiredThe ID of the product, which will look like prod_*************
name
string
requiredThe name of the product
page_id
string
requiredThe ID of the page, which will look like page_*************
visibility
enum<string>
requiredThe visibility of the product
Available options:
visible
, hidden
, archived
, quick_link
Was this page helpful?
curl --request GET \
--url https://api.whop.com/api/v5/me/products/{id} \
--header 'Authorization: <authorization>'
{
"company_id": "<string>",
"created_at": 123,
"description": "<string>",
"id": "<string>",
"name": "<string>",
"page_id": "<string>",
"visibility": "visible"
}