Retrieve current user account details

This endpoint allows you to retrieve the details of the currently authenticated user's account.

Endpoint

GET /api/v1/account/

Authentication

This endpoint requires authentication using a JWT token.

Request

No request parameters are required.

Response

{
  "id": "user_id",
  "email": "[email protected]",
  "name": "User Name"
}

User Profile (Extended Information)

For more detailed user profile information, you can use:

GET /api/v1/me/

Extended Response

{
  "id": "username",
  "email": "[email protected]",
  "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

curl -H "Authorization: Bearer YOUR_JWT_TOKEN" https://api.rememberizer.ai/api/v1/account/

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);

Using Python

import requests

headers = {"Authorization": "Bearer YOUR_JWT_TOKEN"}
response = requests.get("https://api.rememberizer.ai/api/v1/account/", headers=headers)
data = response.json()
print(data)

Last updated