Salad Simple Storage Service
This is a simple HTTP service to allow SaladCloud customers to temporarily upload assets for use in other SaladCloud services. Examples include uploading images for stable diffusion training or inference, audio clips for transcription, etc.
Limitations
- Maximum file size is 100MB
- Files will be automatically deleted after 30 days
Endpoints
See the API Reference for detailed information on the available endpoints.
Authorization
Requests to the S4 service must include either:
- A
Salad-Api-Key
header with a valid SaladCloud API key. - An
Authorization
header with a valid SaladCloud JWT (issued by the Instance Metadata Service) as a bearer token.
Upload a File
PUT /organizations/:organization_name/files/:filename+
Uploads a file to the specified organization.
Request Parameters:
organization_name
(string): The name of the organization.filename
(string): The name of the file to upload. This can be a path, and the file will be stored in a directory structure based on the path. e.g.path/to/my/file.tar.gz
will be stored aspath/to/my/file.tar.gz
.
Example Request:
Example Response:
Example Request, Creating Signed URL
When uploading a file, you can optionally request to sign the url, which will allow you to use the returned url to fetch
the file without needing to include the Salad-Api-Key
header.
Example Response, Signed URL
Download a File
GET /organizations/:organization_name/files/:filename+
Downloads a file from the specified organization.
Request Parameters:
organization_name
(string): The name of the organization.filename
(string): The name of the file to download.
Example Request:
Delete a File
DELETE /organizations/:organization_name/files/:filename+
Deletes a file from the specified organization.
Request Parameters:
organization_name
(string): The name of the organization.filename
(string): The name of the file to delete.
Example Request:
List Files
GET /organizations/:organization_name/files
Lists all files within the specified organization.
Request Parameters:
organization_name
(string): The name of the organization.
Example Request:
Example Response:
Get A Signed Url for a File
POST /organizations/:organization_name/file_tokens/:filename+
Creates a signed URL for a file in the specified organization.
Request Parameters:
organization_name
(string): The name of the organization.filename
(string): The name of the file to create a signed URL for.
Example Request:
Example Response:
Was this page helpful?