Check size
Prod
https://api.everabyte.io/api
Prod
https://api.everabyte.io/api
GET
https://api.everabyte.io/api
/bucket/size/{bucketId}
GET
bucketId
(required): The ID of the bucket for which the size is being retrieved. Example: my-example-bucket
GET /bucket/size/my-example-bucket
my-example-bucket
.200 OK
: Successfully retrieved the bucket size. The response body will typically contain the size in bytes (or another appropriate unit). Example response body:{
"size": 1234567890 // Size in bytes
}
{
"size": "1.23 GB" // Size in human-readable format
}
400 Bad Request
: Invalid request parameters (e.g., malformed bucketId
).404 Not Found
: Bucket not found.500 Internal Server Error
: Server error.