Documentation Index
Fetch the complete documentation index at: https://docs.lobstr.io/llms.txt
Use this file to discover all available pages before exploring further.
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.
Your API authentication token. Value: Token YOUR_API_KEY
Content-Type
string
default:"application/json"
Content type of the request. Value: application/json
Response 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: true
List of active subscription plan objects for the user.
Total number of times the user has logged in. Example: 42
URL of the user’s profile image, or null if not set.
Whether the user has staff/admin access. Example: false
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
curl -X GET "https://api.lobstr.io/v1/me" \
-H "Authorization: Token YOUR_API_KEY" \
-H "Content-Type: application/json"
Response
{
"first_name": "John",
"last_name": "Doe",
"email": "user@example.com",
"email_verified": true,
"plan": [],
"login_count": 42,
"profile_image": null,
"is_staff": false,
"credit_interval": "monthly"
}