Skip to main content
GET
/
storage
/
obj
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"
}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved object bucket list

body
object
metadata
object