cURL
curl --request GET \ --url https://dev.exante.app/api/user/{uid} \ --header 'Authorization: Bearer <token>'
{ "status": "success", "status_code": 200, "message": "Success", "data": { "user": { "id": "<string>", "uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "firstname": "<string>", "lastname": "<string>", "fullname": "<string>", "email": "<string>", "access_status": "pending", "avatar": "<string>", "first_seen": "2023-11-07T05:31:56Z", "last_seen": "2023-11-07T05:31:56Z" } } }
Returns a public profile for the specified user. The response includes a subset of fields compared to the current user’s own profile.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
User UID
Public user profile
"success"
200
"Success"
Show child attributes