Skip to main content
GET
/
v1
/
users
/
me
/
subscription
curl https://hapi.7331.org/v1/users/me/subscription \
  -b cookies.txt
{
  "subscription_tier": 1,
  "expires_at": "2025-12-31T23:59:59Z",
  "is_active": true,
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}
Requires an active session cookie.

Response

subscription_tier
integer
required
Current subscription level. 0 = Basic, 1 = Trial, 2 = Premium, 3 = Lifetime.
expires_at
string
When subscription expires (UTC). null for lifetime.
is_active
boolean
required
Whether subscription is currently active.
created_at
string
required
When the user was created (UTC).
updated_at
string
required
When the user was last updated (UTC).
curl https://hapi.7331.org/v1/users/me/subscription \
  -b cookies.txt
{
  "subscription_tier": 1,
  "expires_at": "2025-12-31T23:59:59Z",
  "is_active": true,
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-15T12:00:00Z"
}