curl --location --request GET 'https://connect.litehost.io/v1/user' \
--header 'Authorization: Bearer <token>'{
"status": "success",
"data": {
"email": "user@example.com",
"plan": {
"tier": "creator",
"limits": {
"maxProjects": 10,
"maxStorageBytes": 2147483648,
"maxFilesPerProject": 200,
"maxVisitorsPerMonth": 100000
}
},
"quota": {
"projects": {
"used": 3,
"limit": 10,
"unlimited": false
},
"storage": {
"usedBytes": 52428800,
"limitBytes": 2147483648,
"unlimited": false
}
}
}
}