Skip to main content
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

string
required
Your API authentication token. Value: Token YOUR_API_KEY
string
default:"application/json"
Content type of the request. Value: application/json

Response Field Explanations

string
User’s first name. Example: "John"
string
User’s last name. Example: "Doe"
string
User’s email address. Example: "user@example.com"
boolean
Whether the user’s email address has been verified. Example: true
array
List of active subscription plan objects for the user.
integer
Total number of times the user has logged in. Example: 42
string | null
URL of the user’s profile image, or null if not set.
boolean
Whether the user has staff/admin access. Example: false
string
The user’s credit reset interval (e.g., monthly billing cycle). Example: "monthly"
Use this endpoint to verify your authentication is working before making other API calls. A successful response means your API key is valid.
The response includes rate limit information in the headers. Check the X-RateLimit-Remaining header to monitor your API usage.

Code Examples

Response

200