cURL
curl --request GET \ --url https://api.example.com/api/v1/auth/me \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "email": "<string>", "created_at": "<string>", "display_name": "<string>" }
Get the authenticated user’s profile.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Public profile of the authenticated user.
Unique user identifier.
User email address.
ISO-8601 timestamp of account creation.
User-chosen display name.