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": "obj-bucket1",
        "description": "First object bucket"
      },
      {
        "name": "obj-bucket2",
        "description": "Second object bucket"
      }
    ],
    "results_total": 2
  },
  "metadata": {
    "duration": "5ms"
  }
}

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