Skip to main content
GET
/
storage
/
kv
List all KV buckets
curl --request GET \
  --url https://api.quiva.ai/storage/kv \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "created": "2025-05-08T12:49:45.02903891Z",
        "name": "bucket1",
        "description": "First bucket",
        "entry_total": 0
      },
      {
        "created": "2025-05-08T12:49:45.02903891Z",
        "name": "bucket2",
        "description": "Second bucket",
        "entry_total": 12
      }
    ],
    "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 KV bucket list

body
object
metadata
object