Skip to content

User Profile

The /me endpoint returns the profile of the currently authenticated user.


GET /me

Returns the user profile for the authenticated Clerk session.

Terminal window
curl -H "Authorization: Bearer TOKEN" \
https://api.excellent-banking.com/me

Response (200):

{
"id": 42,
"email": "user@example.com",
"created_at": "2026-04-15T08:30:00Z"
}

Errors:

StatusWhen
401Missing 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.