Users
Get profile
Retrieve the authenticated user's profile.
GET /users/me
Returns the profile of the authenticated user.
Authentication: Bearer token · Permission:
account:read · Rate limit: default (120 / 60s)Request
curl https://api.twominutereports.com/v1/users/me \
-H "Authorization: Bearer tmrc_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Response
{
"success": true,
"data": {
"id": "0190f8a1-2b3c-7d4e-8f90-1a2b3c4d5e6f",
"name": "Ada Lovelace",
"email": "[email protected]",
"avatarUrl": "https://assets.gox.ai/tmr/avatars/0190f8a1.png",
"preferences": {
"appearance": "light",
"notifications": {
"email": { "billing": true, "productUpdates": true, "promotional": false }
}
},
"createdAt": "2026-01-12T08:15:00.000Z"
}
}
{
"success": false,
"error": { "code": "UNAUTHORIZED", "message": "Authentication required" }
}