Skip to main content

GET /accounts/profile

This endpoint returns detailed information about the authenticated user’s account, including their profile and subscription plan.

Response

id
string
The user’s unique identifier.
email
string
The user’s email address.
firstName
string
The user’s first name.
lastName
string
The user’s last name.
company
string
The user’s company name.
plan
string
The user’s subscription plan (free, starter, professional, enterprise).
createdAt
string
ISO 8601 timestamp of account creation.
updatedAt
string
ISO 8601 timestamp of last profile update.
curl -X GET https://api.llmgenerator.com/api/v1/accounts/profile \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "user_abc123def456",
  "email": "[email protected]",
  "firstName": "Jane",
  "lastName": "Doe",
  "company": "Acme Inc",
  "plan": "professional",
  "createdAt": "2026-01-01T10:00:00.000Z",
  "updatedAt": "2026-01-15T14:30:00.000Z"
}