Skip to main content
GET
/
storage
/
obj
/
{bucket}
/
entries
List object store entries
curl --request GET \
  --url https://api.quiva.ai/storage/obj/{bucket}/entries \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "key": "images/logo.png",
        "size": 24576
      },
      {
        "key": "images/banner.jpg",
        "size": 1048576
      },
      {
        "key": "videos/intro.mp4",
        "size": 52428800
      },
      {
        "key": "documents/readme.pdf",
        "size": 204800
      }
    ],
    "results_total": 4
  },
  "metadata": {
    "bucket": "media-assets",
    "limit": 10,
    "duration": "15ms"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.quiva.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

bucket
string
required

Name of the bucket

Query Parameters

limit
integer
default:10

Maximum number of entries to retrieve

Required range: 1 <= x <= 1000

Response

Successfully retrieved entries

body
object
metadata
object