create_signed_urls
Generate multiple secure, time-limited download URLs for batch file access operations in Supabase Storage buckets.
Instructions
Generate multiple signed download URLs in a single request for batch operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucket_name | Yes | Source bucket | |
expires_in | No | URL expiration in seconds (default: 3600) | |
file_paths | Yes | Array of file paths to generate URLs for |
Input Schema (JSON Schema)
{
"properties": {
"bucket_name": {
"description": "Source bucket",
"maxLength": 63,
"minLength": 3,
"type": "string"
},
"expires_in": {
"default": 3600,
"description": "URL expiration in seconds (default: 3600)",
"maximum": 604800,
"minimum": 60,
"type": "number"
},
"file_paths": {
"description": "Array of file paths to generate URLs for",
"items": {
"maxLength": 1024,
"type": "string"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
}
},
"required": [
"bucket_name",
"file_paths"
],
"type": "object"
}