CLIF provides a single user-data endpoint that returns account statistics for the authenticated user. Use it to display storage usage, check how close you are to your allocation limit, or surface account details in an integration.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/WyattBrashear/CLIF/llms.txt
Use this file to discover all available pages before exploring further.
POST /fetch-userdata
Return account information and storage statistics for the authenticated user.Request parameters
Your unique user identifier, returned at registration.
SHA-256 hex digest of your password.
Response fields
"success" when credentials are valid and data is returned.The authenticated user’s unique identifier.
The display name associated with this account.
Maximum storage available to this user, in bytes. Set by the server administrator in
CLIF.json. The default is 20000 bytes.Total bytes currently consumed by the user’s stored files.
Storage utilization as an integer percentage:
(used_data / allocation_limit) * 100, truncated to a whole number.data_percent is returned as an integer. A value of 6 means 6% of your allocation is in use, not 0.06.Example
Success response