List Buckets
List buckets owned by the authenticated user.
Authentication
Requires X-Glue-Authentication.
Request
1curl "https://api.hola.cloud/v1/buckets" \
2 -H 'X-Glue-Authentication: {"user":{"id":"user-123"}}'
Response
The response is a JSON array.
1[
2 {
3 "id": "bucket-550e8400-e29b-41d4-a716-446655440000",
4 "name": "assets",
5 "description": "Application assets",
6 "created_timestamp": 1782045600000000000,
7 "created_h": "2026-06-21T10:00:00Z",
8 "owners": ["user-123"]
9 }
10]
Error Codes
| Status | Description |
|---|---|
| 401 | Missing or invalid X-Glue-Authentication |
| 500 | Persistence error |
Comments