Skip to main content
GET
/
api
/
users
/
me
Get Current User
curl --request GET \
  --url https://api.teel.finance/api/users/me
{
  "id": "usr_abc123",
  "email": "user@example.com",
  "name": "Jane Smith",
  "auth0Id": "auth0|abc123def456",
  "businessId": "biz_xyz789",
  "createdAt": "2026-01-15T08:00:00Z",
  "updatedAt": "2026-03-10T12:30:00Z"
}
Returns the profile of the currently authenticated user based on their JWT token.

Authentication

This endpoint requires a valid JWT bearer token in the Authorization header.

Response

id
string
Unique user identifier.
email
string
User’s email address.
name
string
User’s display name.
auth0Id
string
The user’s Auth0 identifier.
businessId
string
The ID of the business associated with this user, if any.
createdAt
string
ISO 8601 timestamp of when the user was created.
updatedAt
string
ISO 8601 timestamp of the last profile update.
{
  "id": "usr_abc123",
  "email": "user@example.com",
  "name": "Jane Smith",
  "auth0Id": "auth0|abc123def456",
  "businessId": "biz_xyz789",
  "createdAt": "2026-01-15T08:00:00Z",
  "updatedAt": "2026-03-10T12:30:00Z"
}