JavaScript: listBuckets

Retrieves the details of all Analytics Storage buckets within an existing project Only returns buckets of type 'ANALYTICS'

Public alpha: This API is part of a public alpha release and may not be available to your account type.

Parameters

Examples

List analytics buckets

const { data, error } = await supabase
  .storage
  .analytics
  .listBuckets({
    limit: 10,
    offset: 0,
    sortColumn: 'created_at',
    sortOrder: 'desc'
  })