List all object store buckets
curl --request GET \
--url https://api.quiva.ai/storage/obj \
--header 'Authorization: Bearer <token>'
{
"body": {
"results": [
{
"name": "media-assets",
"description": "Production media files",
"entry_total": 1523,
"metadata": {
"environment": "production",
"team": "content"
},
"placement": {
"cluster": "us-east-1",
"tags": [
"ssd",
"high-iops"
]
},
"created": "2024-01-15T10:30:00Z"
},
{
"name": "user-uploads",
"description": "User-generated content",
"entry_total": 8492,
"metadata": {
"environment": "production"
},
"placement": {
"cluster": "us-west-2",
"tags": [
"standard"
]
},
"created": "2024-02-20T14:15:00Z"
}
],
"results_total": 2
},
"metadata": {
"duration": "12ms"
}
}