Skip to main content

Supabase Retrieve Public File URLs

Generates public URLs for one or more files stored in a Supabase Storage bucket.

Supabase Retrieve Public File URLs node

This node is useful when you want to display images, link to documents, or render media that is stored in Supabase Storage. The result is a list of URLs corresponding to the provided file paths.

Depending on your bucket configuration, the generated URLs may be publicly accessible or time-limited. Expiration can be configured to control how long the URLs remain valid.

This functionality is based on the Supabase Client SDK method for retrieving a public URL. For reference, see Supabase Client SDK – Retrieve public URL.

Inputs

DataTypeDescription
FetchsignalTriggers the URL generation.
BucketstringThe Storage bucket name.
Paths (array of strings)array of stringOne or more file paths inside the bucket.
Expires In (seconds)numberOptional. Used when generating time-limited URLs.

Outputs

DataTypeDescription
Signed URLsarray of stringThe resulting URLs, in the same order as the input paths.
Is FetchingbooleanTrue while the request is in progress.
Is FetchedbooleanTrue once the request has completed.
Is SuccessbooleanTrue if URLs were generated successfully.
Is ErrorbooleanTrue if an error occurred.
StatusstringStatus returned from the operation.
Error TextstringError message returned by Supabase, if any.
SuccesssignalTriggered when the operation completes successfully.
FailuresignalTriggered if the operation fails.
FinallysignalTriggered after the operation completes, regardless of outcome.