Users
Retrieve a User
Returns a user
GET
/
v5
/
app
/
users
/
{id}
Authorization
Path
curl --request GET \
--url https://api.whop.com/api/v5/app/users/{id} \
--header 'Authorization: <authorization>'
{
"email": "<string>",
"id": "<string>",
"name": "<string>",
"profile_pic_url": "<string>",
"username": "<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 User, which will look like user_*************
Response
200 - application/json
email
string
The email of the user
id
string
requiredThe ID of the user, which will look like user_*************
name
string
The first and last name of the user.
profile_pic_url
string
The URL of the user's profile picture
username
string
requiredThe username of the user
Was this page helpful?
curl --request GET \
--url https://api.whop.com/api/v5/app/users/{id} \
--header 'Authorization: <authorization>'
{
"email": "<string>",
"id": "<string>",
"name": "<string>",
"profile_pic_url": "<string>",
"username": "<string>"
}