Account
Retrieve your account information including plan details, billing cycle, and current usage against limits.
GET
/api/v1/accountGet your account details, current plan, and resource usage.
Get account info
curl "https://u2l.ai/api/v1/account" \
-H "Authorization: Bearer u2l_live_your_api_key"Response fields
| Field | Type | Description |
|---|---|---|
| id | string | Your account UUID |
| string | Account email address | |
| plan | string | Current plan (pro, advanced, team, enterprise) |
| billingCycle | string | null | Billing period (monthly, yearly, lifetime) |
| createdAt | string | Account creation date (ISO 8601) |
| usage | object | Current 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
}
}