Retrieve current user's account details¶
This endpoint allows you to retrieve the details of the currently authenticated user's account.
Endpoint¶
Authentication¶
This endpoint requires authentication using a JWT token.
Request¶
No request parameters are required.
Response¶
User Profile (Extended Information)¶
For more detailed user profile information, you can use:
Extended Response¶
{
"id": "username",
"email": "user@example.com",
"name": "User Name",
"user_onboarding_status": 7,
"dev_onboarding_status": 3,
"company_name": "Company",
"website": "https://example.com",
"bio": "User bio",
"team": [
{
"id": "team_id",
"name": "Team Name",
"image_url": "url",
"role": "admin"
}
],
"embed_quota": 10000,
"current_usage": 500,
"email_verified": true
}
Error Responses¶
| Status Code | Description |
|---|---|
| 401 | Unauthorized - Invalid or missing authentication credentials |
| 403 | Forbidden - User does not have permission to access this resource |
| 500 | Internal Server Error - Something went wrong on the server |
Usage Example¶
Using cURL¶
Using JavaScript¶
const response = await fetch('https://api.rememberizer.ai/api/v1/account/', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_JWT_TOKEN'
}
});
const data = await response.json();
console.log(data);