Supabase Auth

sb_create_signed_url

Create a temporary signed URL for a private storage object. The URL expires after the specified duration.

Remote node2flow/supabase

Other tools also called sb_create_signed_url? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Object file path within the bucket"
    },
    "bucket": {
      "type": "string",
      "description": "Bucket name"
    },
    "_fields": {
      "type": "string",
      "description": "Comma-separated list of fields to include in the response"
    },
    "expires_in": {
      "type": "number",
      "description": "URL expiration time in seconds (e.g. 3600 for 1 hour)"
    }
  }
}