Skip to main content
GET
/
api
/
v1
/
user
/
{user_id}
/
public-profile
Fetch User Profile Pic
curl --request GET \
  --url https://api.example.com/api/v1/user/{user_id}/public-profile \
  --header 'Authorization: Bearer <token>'
{
  "user_id": "<string>",
  "profile_pic_url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
string
required

Response

Successful Response

user_id
string
required
profile_pic_url
string | null