GoodMem
ReferenceAPIREST APIUsers

Get current user profile

Retrieves the authenticated user's profile information including email, display name, and creation time. This endpoint does not require any parameters as it automatically returns the caller's information.

GET
/v1/users/me
x-api-key<token>

In: header

Response Body

curl -X GET "https://loading/v1/users/me"
{
  "userId": "550e8400-e29b-41d4-a716-446655440000",
  "email": "[email protected]",
  "displayName": "John Doe",
  "username": "johndoe",
  "createdAt": "1620000000000",
  "updatedAt": "1620100000000"
}
Empty