Retrieve the currently authenticated user information
cURL
curl --request GET \ --url https://api.slant.app/v1/me \ --header 'Authorization: Bearer <token>'
{ "id": "abc123xyz", "email": "user@example.com", "first_name": "John", "last_name": "Doe" }
OAuth 2.0 Bearer Token from Clerk authentication
current user retrieved
The ID of the user
"abc123xyz"
Email address of the user
"user@example.com"
First name of the user
"John"
Last name of the user
"Doe"