list_storage_objects
Retrieve and filter objects from a specific storage bucket in a self-hosted Supabase instance. Specify bucket ID, limit, offset, and prefix for customized results.
Instructions
Lists objects within a specific storage bucket, optionally filtering by prefix.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucket_id | Yes | The ID of the bucket to list objects from. | |
limit | No | Max number of objects to return | |
offset | No | Number of objects to skip | |
prefix | No | Filter objects by a path prefix (e.g., 'public/') |
Input Schema (JSON Schema)
{
"properties": {
"bucket_id": {
"description": "The ID of the bucket to list objects from.",
"type": "string"
},
"limit": {
"default": 100,
"description": "Max number of objects to return",
"type": "number"
},
"offset": {
"default": 0,
"description": "Number of objects to skip",
"type": "number"
},
"prefix": {
"description": "Filter objects by a path prefix (e.g., 'public/')",
"type": "string"
}
},
"required": [
"bucket_id"
],
"type": "object"
}