Account

Retrieve your account information including plan details, billing cycle, and current usage against limits.

GET/api/v1/account

Get your account details, current plan, and resource usage.

curl "https://u2l.ai/api/v1/account" \
  -H "Authorization: Bearer u2l_live_your_api_key"

Response fields

FieldTypeDescription
idstringYour account UUID
emailstringAccount email address
planstringCurrent plan (pro, advanced, team, enterprise)
billingCyclestring | nullBilling period (monthly, yearly, lifetime)
createdAtstringAccount creation date (ISO 8601)
usageobjectCurrent resource usage (links, qrCodes, customDomains, apiKeysUsed, apiKeysLimit)
200 OK
{
  "id": "d4e5f6a7-b8c9-0123-def0-123456789abc",
  "email": "user@example.com",
  "plan": "advanced",
  "billingCycle": "yearly",
  "createdAt": "2025-06-15T10:00:00.000Z",
  "usage": {
    "links": 142,
    "qrCodes": 34,
    "customDomains": 2,
    "apiKeysUsed": 1,
    "apiKeysLimit": 1
  }
}