User Profile
The /me endpoint returns the profile of the currently authenticated user.
Get Current User
Section titled “Get Current User”GET
/me
Returns the user profile for the authenticated Clerk session.
curl -H "Authorization: Bearer TOKEN" \ https://api.excellent-banking.com/meResponse (200):
{ "id": 42, "email": "user@example.com", "created_at": "2026-04-15T08:30:00Z"}Errors:
| Status | When |
|---|---|
401 | Missing or invalid Clerk JWT |
This is the simplest endpoint in the API — just a user profile lookup. It’s useful for verifying that your authentication is working correctly before making other API calls.