JavaScript: getBucket

Retrieves metadata for a specific vector bucket

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

Parameters

Examples

Get bucket metadata

const { data, error } = await supabase
  .storage
  .vectors
  .getBucket('embeddings-prod')

console.log('Bucket created:', data?.vectorBucket.creationTime)