Auth: JWT Required
Get storage capacity summary for authenticated user.
Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the Bearer. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET '/user/capacity' \
--header 'Authorization: Bearer <token>'
Responses
application/json {
"code": 0,
"data": {
"total": 3702272294912,
"used": 7946323095,
"storage_pack_total": 1503249039360
},
"msg": ""
}
Modified at 2025-08-12 07:13:02