/api/storage-bunny prefix. The admin UI calls them for you — you only need this reference if you build a custom upload flow (for example, a headless front-end that uploads directly to Bunny), or you’re wiring up the Stream webhook.
Endpoints
These endpoints only exist when the matching feature is configured:
storage/upload needs storage.clientUploads, stream/tus-auth needs stream.tus, and stream/webhook needs stream.webhook.
Authentication
storage/uploadandstream/tus-authrun through Payload’s access control — send them with an authenticated admin session (thepayload-tokencookie). Each also enforces its own access callback (clientUploads.access,tus.checkAccess).stream/webhookis not a Payload-authenticated route. Bunny signs each call, and the plugin verifies an HMAC-SHA256X-BunnyStream-Signatureheader against the library’s Read-Only API key (stream.webhook.secret).
Base your requests on your own app’s origin. The
https://your-site.com server shown on each endpoint is a
placeholder — replace it with where your Payload app runs.Plugin config accessors
Looking for the plugin’s server-side helper functions (getBunnyStreamForCollection, getBunnyStorageForCollection, and friends) rather than HTTP endpoints? Those are documented under Accessing the resolved config.