Retrieve usage statistics for the authenticated account.
Query Parameters
Start of the period (ISO 8601). Defaults to 30 days ago.
End of the period (ISO 8601). Defaults to now.
Response
Number of file uploads in the period.
Number of file deletions in the period.
Number of storage extensions in the period.
Data uploaded in the period (bytes).
Data downloaded / served via aggregators in the period (bytes).
Total bytes currently stored on Walrus.
Number of files whose storage epochs have already expired.
Number of Walrus blobs currently stored (standalone blobs).
Number of Walrus quilts currently stored (batched blobs).
Number of environments on the account.
Number of publishers on the account.
Number of aggregators on the account.
SUI spent in the period (gas fees + conversions).
WAL spent in the period (Walrus storage).
Example
curl "https://api.tusky.io/v2/account/usage?from=2026-03-01T00:00:00Z&to=2026-03-07T23:59:59Z" \
-H "Api-Key: YOUR_API_KEY"
Response
{
"uploads": 3120,
"deletions": 45,
"extends": 35,
"ingressBytes": 5368709120,
"egressBytes": 21474836480,
"usedBytes": 85236940800,
"activeFiles": 4520,
"expiredFiles": 18,
"blobs": 312,
"quilts": 89,
"environments": 3,
"publishers": 4,
"aggregators": 2,
"suiSpent": "12.45",
"walSpent": "38.2"
}