Experiences
Retrieve an Experience
Returns an experience
GET
/
v5
/
app
/
experiences
/
{id}
Authorization
Path
curl --request GET \
--url https://api.whop.com/api/v5/app/experiences/{id} \
--header 'Authorization: <authorization>'
{
"app_id": "<string>",
"company_id": "<string>",
"created_at": 123,
"id": "<string>",
"name": "<string>",
"product_ids": [
"<string>"
]
}
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 Experience, which will look like exp_*************
Response
200 - application/json
app_id
string
The ID of the app that created the experience, which will look like app_*************
company_id
string
requiredThe ID of the company, which will look like biz_*************
created_at
number
requiredThe date the experience was created as a unix timestamp.
id
string
requiredThe ID of the experience, which will look like exp_*************
name
string
requiredThe name of the experience
product_ids
string[]
requiredWas this page helpful?
curl --request GET \
--url https://api.whop.com/api/v5/app/experiences/{id} \
--header 'Authorization: <authorization>'
{
"app_id": "<string>",
"company_id": "<string>",
"created_at": 123,
"id": "<string>",
"name": "<string>",
"product_ids": [
"<string>"
]
}