Get User Profile
User
Get User Profile
Retrieve authenticated user’s profile data including personal details, account status, and subscription information
GET
Get User Profile
This endpoint returns the authenticated user’s complete profile data in a single API call. Use it to verify authentication, retrieve user details, and check account status.
This is typically the first endpoint you’ll call after authentication to confirm your credentials are working correctly.
Headers
Your API authentication token. Value:
Token YOUR_API_KEYContent type of the request. Value:
application/jsonResponse Field Explanations
User’s first name. Example:
"John"User’s last name. Example:
"Doe"User’s email address. Example:
"user@example.com"Whether the user’s email address has been verified. Example:
trueList of active subscription plan objects for the user.
Total number of times the user has logged in. Example:
42URL of the user’s profile image, or
null if not set.Whether the user has staff/admin access. Example:
falseThe user’s credit reset interval (e.g., monthly billing cycle). Example:
"monthly"The response includes rate limit information in the headers. Check the
X-RateLimit-Remaining header to monitor your API usage.Code Examples
Response
200