Apps
Retrieve the current app
Returns an App
GET
/
v5
/
app
Authorization
curl --request GET \
--url https://api.whop.com/api/v5/app \
--header 'Authorization: <authorization>'
{
"company_id": "<string>",
"created_at": 123,
"id": "<string>",
"name": "<string>"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
company_id
string
requiredThe ID of the company that owns this app, which will look like biz_*************
created_at
number
requiredThe date the app was created as a unix timestamp.
id
string
requiredThe ID of the app, which will look like app_*************
name
string
requiredThe name of the app
Was this page helpful?
curl --request GET \
--url https://api.whop.com/api/v5/app \
--header 'Authorization: <authorization>'
{
"company_id": "<string>",
"created_at": 123,
"id": "<string>",
"name": "<string>"
}