Storage

Manage storage commands to upload, download, and delete files from storage.

TransferChain S4 provides a privacy-enhancing wrapper around standard S3 operations.

  • Create secure buckets ((Note: Buckets are created and managed via TransferChain S4’s S3-compatible interface — not directly on AWS S3 or other providers.)

  • Upload and retrieve files

  • List objects

  • Delete objects

All objects are:

  • Client-side encrypted

  • Split into multiple fragments

  • Stored across multiple backends (based on your configuration)

  • Immutable unless explicitly overwritten

Upload

Endpoint: /v1/storage/upload Method: POST

Body:

{
  "files": ["raw file data", "/home/transferchain/file1.zip"]
}

Response:

Last updated